<!--

var x = screen.Width;
var y;
if(x==640)
y=80;
if(x==800)
y=280;
if(x==1024)
y=300;

function openchild(gif,clr){
msgWindow=window.open('','subwindow','toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=no,width=350,height=350,top=180,left='+y+"'");
msgWindow.focus();
msgWindow.document.write('<HTML><head><Title>Blowups</Title></head>');
msgWindow.document.write('<body bgcolor="' + clr + '" Topmargin="0" leftmargin="0">');
msgWindow.document.write('<center><img src="' + gif + '"></center>');
msgWindow.document.write('</body></HTML>');
msgWindow.document.close();
}

 //-->