// JavaScript Document

function openWin(imgLoc,prodTitle){
	imgWindow = window.open('','','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=660,height=545');
	imgWindow.document.write('<html><head><title>'+prodTitle+'</title></head>');
	imgWindow.document.write('<body style="margin-top:10px; background:#e1e1e1;"><table width="100%" border="0" style="border-collapse:collapse"><tr><td style="text-align:center;">');
	imgWindow.document.write('<div style="width:640;margin:auto;"><img src="'+imgLoc+'" border="0" class="picstroke"/></div><br>');
	imgWindow.document.write('<div style="text-align:center; font-size:8pt; font-weight:bold;"><a href="javascript:window.close()">CLOSE WINDOW</a></div>');
	imgWindow.document.write('</td></tr></table></body></html>');					
	imgWindow.focus();
	}