<!--
function newin(myfile, myname, scroll, pw, ph){
	var w = 650
	var h = 535
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+ h +', width = '+ w +', top = '+ wint +', left = '+ winl +', scrollbars = '+ scroll +', resizable';
	win = window.open('', '', winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); };
	var doc = win.document;
	doc.write('<head><title>');
	doc.write(myname);
	doc.write('</title></head>');
	doc.write('<body bgcolor="#110055" background="../gifs/bg147.gif"><br>');
	doc.write('<center><table border="8" cellpadding="0" cellspacing="4"><tr><td bgcolor="#ffffff">');
	doc.write('<img width="' + pw + '" height="' + ph + '" src="' + myfile + '" alt="' + myname + '">');
	doc.write('</td></tr></table>');
	doc.write('<br><a href="javascript:void(0);" onclick="window.close();">')
	doc.write('<img border="0" src="images/clicktoclose.jpg" alt="Close Window"></a>');
	doc.write('</center>');
	doc.write('</body>');
	doc.close();
	}
//-->