// popup script to put 4x image into new window that uses metatags to suppress the IE "imagetoolbar" default resize function
function ShowMe(picURL){
newWindow=window.open('picURL','newWin',',scrollbars=yes,resizable=yes,width=620,height=500')
newWindow.document.write('<html><head><meta http-equiv="imagetoolbar" content="no">');
newWindow.document.write('<meta http-equiv="imagetoolbar" content="false"><\/head>');
newWindow.document.write('<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">')
newWindow.document.write('<img src="'+picURL+'"><\/body><\/html>');
newWindow.focus()
newWindow.document.close()
}



 
