// JavaScript Document




function popit(URL, WIDTH, HEIGHT)
{
windowprops = "left=10,top=10,scrollbars,width=" + (WIDTH+50) + ",height=" + (HEIGHT+70) + ';alwaysRaised=yes';
/*text  = '<html><head><title>www.imanishool.sc.ke</title><link rel="stylesheet" type="text/css" href="main.css"></head><body bgcolor="#6699FF" class="pop">';
text += '<center><img src="' + URL + ' " border="1"><P>';
text += '<P>';
text += '<a href="JavaScript:window.close();" class="bar">Close this window</a>';
text += '</center></body></html>';
if ((preview) && (document.all)) preview.close();*/
window.open(URL, "preview", windowprops);
/*preview.document.open();
preview.document.write(text);
preview.document.close();*/
}

