// Generic Javascript Popupwindow
// ©2000 by Joakim Nygård

function gPop(source,w,h,navn)
{
var windowRef =
window.open('',name,'scrollbars=no,dependent,width='+w+',height='+h);
windowRef.document.open();
windowRef.document.write('<html><head><title>'+navn+'</title></head>');
windowRef.document.write('<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>');
windowRef.document.write('<img src="'+source+'"></body></html>');
windowRef.document.close();
}