
function plets(url,w,b) {
	var venster = window.open('',toolbar=0,location,directories=0,status=0,scrollbars=0,menubar=1,resizable=0);
	venster.resizeTo(w, b);
	venster.document.write ("<html><head><title>Popup</title></head><body leftmargin=0 topmargin=0><img src=");
    venster.document.write(url);
    venster.document.write(" border=0></body></html>");	

}

