
function openwindow(which) {
newWin = window.open("","imgWin","height=635,width=800,scrollbars=no,directories=no,location=no,status=no,toolbar=no,menubar=no,screenX=200,screenY=200,left=200,top=200");
newWin.document.write('<html><head><title>'+which+'</title><style type="text/css">body{margin:0%;} img{display:block;margin-left:auto;margin-right:auto;text-align:center;}</style></head><body link="ffffff" bgcolor="#000000" onBlur="javascript:self.close()">');
newWin.document.write('<img src="Images/'+which+'.jpg" title="'+which+'">');
newWin.document.write('<p style="text-align:center;font-size:10pt"><a href="javascript:self.close()">Close Window</a></p>');
newWin.document.write('</body></html>');
newWin.document.close();
newWin.focus()
}

