﻿<!--
function openPictureWindow (imageName, imageWidth, imageHeight, alt, posLeft, posTop) {
	newWindow = window.open ('', 'newWindow', 'width='+imageWidth+', height='+imageHeight+', left='+posLeft+', top='+posTop+'');
	newWindow.document.open ();
	newWindow.document.write ('<html><head><title>'+alt+'</title>'); 
	newWindow.document.write ('<meta http-equiv=imagetoolbar content=no>'); 
	newWindow.document.write ('<script language="JavaScript">windowWidth="'+imageWidth+'"; windowHeight="'+imageHeight+'"; if (parseInt(navigator.appVersion) >= 4) window.moveTo((screen.width/2)-(windowWidth/2+10),0);</script></head>'); 
	newWindow.document.write ('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write ('<table width="'+imageWidth+'" height="'+imageHeight+'" border="0" cellpadding="0" cellspacing="0" background="'+imageName+'"><tr><td><img src="../images/blank.gif" width="'+imageWidth+'" height="'+imageHeight+'" border="0"></td></tr></table>'); 
	newWindow.document.write ('</body></html>');
	newWindow.document.close ();
	newWindow.focus ();
}
//-->