<!--
function popup(url, name, width, height)
{
settings="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,"+
"resizable=no,width="+width+",height="+height+",left=100,top=0";

MyWindow=window.open("",name,settings);
MyWindow.document.write("<body leftmargin='1' topmargin='1'>");
MyWindow.document.write("<img src="+url+">");
MyWindow.document.write("</body>");
}
//-->

