function openWin(imageSrc, imageDimw, imageDimh) {	myWin = window.open("", "imageOpener","width=" + imageDimw + ",height=" + imageDimh+",top=0,left=0,screenX=0,screenY=0");  	myWin.focus();		myWin.document.write('<html><head><link href="ODstyles.css" rel="stylesheet" type="text/css">');	myWin.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onBlur="window.self.close()">');	myWin.document.write('<title>' + imageSrc + '</title><script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script></head><body>');	myWin.document.write('<img src="images/' +imageSrc+ '" alt="' +imageSrc+ '">');	myWin.document.write('</body></html>');	myWin.document.close();		}  