function popup(filename, y, x)
{
var specs = eval("'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + x + ",height=" + 550 + "'");
var thecode;
thecode="<html><head><title>Amazing CAPPER</title><SCRIPT language=JavaScript> function stayontop() { window.focus();  setTimeout('stayontop()', 10000); } stayontop();</SCRIPT></head>"
thecode+="<body bgcolor='#000000' text='#CCCCCC' alink='#FF0000' vlink='#0000FF' link='#00FFFF' MARGINWIDTH=0 LEFTMARGIN=0 MARGINHEIGHT=0 TOPMARGIN=0>"
thecode+="<table width=100% align=center border=0 cellpadding=0 cellspacing=0><TR><TD>"
thecode+="<center><img src='" + filename + "' border=0></center>"
thecode+="</TD></TR></TABLE>"
thecode+="</BODY></HTML>"


var popupwin
popupwin = window.open("","",specs);
setTimout(popupwin.document.write(thecode), 100);
popupwin.document.close();
popupwin.focus();

return;
}
