<!--
var w1;

function NewWindow(w, h, imgnm)
{
w1=window.open('','n_w','resizable=no,menubar=no,status=no,scrollbars=no,width='+w+',height='+h);

w1.document.write('<html><body bgcolor=#000000 topmargin=0 leftmargin=0 marginwidth=0 marginheight=0>');
w1.document.write('<img src="'+imgnm+'">');
w1.document.write('</body></html>');
w1.document.close();
}

//-->
