
<!-- 

function wi(winurl, w, h) 
{ 
myWin=window.open(winurl,"_blank","status=no"); 
var winWidth=w+10; 
var winHeight=h+30; 
myWin.resizeTo(winWidth, winHeight); 
 myWin.focus();

myWin.document.open("text/html"); 
myWin.document.writeln("<html><head></head>");
myWin.document.writeln("<body leftmargin='0' topmargin='0'>"); 
myWin.document.writeln('<img src='+winurl+' alt="close" onclick="parent.close()" style=cursor:hand;>'); 
myWin.document.write("</body></html>"); 
myWin.document.close(); 
} 
//--> 
