function popit(what)
{
     wopt="scrollbars=no,status=no,toolbar=no,menubar=no,resizable=yes,width=530,height=530,screenX=50,screenY=50";
     newpop=window.open(what,"image",wopt);
     newpop.document.open();
     newpop.document.write('<html><head><title>Image</title><link href="/popup.css" rel="stylesheet"></head>');
     wobo="this.resizeTo(document.getElementsByTagName('IMG').item(0).width+14,document.getElementsByTagName('IMG').item(0).height+85)";
     newpop.document.write('<body onload="'+wobo+'"><table cellspacing="0" cellpadding="0"><tr><td align="center" valign="middle"><img src="'+what+'" alt=""></td></tr></table></body></html>');
     newpop.document.close();
	 if (window.focus) {newpop.focus()}
}