function popup(dd)
{

popupwin = new Object();
var thisYear = new Date();
popupwin= window.open("","");
popupwin.document.write('<body leftmargin="0" topmargin="10" marginwidth="0" marginheight="0" bgcolor=black text="silver" link="#CCCCCC">');
popupwin.document.write('<center><img name="img" src='+dd+'></center>');
popupwin.document.write('<center>Copyright '+thisYear.getYear()+' - BLITZ 77</center>');
popupwin.document.write('</body>');
while(popupwin.img.complete == false)
{
}
var imgheight = popupwin.document.images["img"].height + 250;
var imgwidth = popupwin.document.images["img"].width + 100;

popupwin.resizeTo(imgwidth, imgheight);
}
