<!-- 
function opennewwindow(javampicture,windowparameters){ 
newwindow=window.open("","newone", windowparameters); 
newwindow.document.write ("<html><head>"); 
newwindow.document.write ("<title>Picture</title>"); 
newwindow.document.write ("</head><body style='margin:0px'>"); 
newwindow.document.write ("<a href='javascript:this.close()'><img src="); 
newwindow.document.write (javampicture); 
newwindow.document.write (" border='0' alt='CLOSE'"); 
newwindow.document.write ("></a>"); 
newwindow.document.write ("</body></html>"); 
newwindow.document.close(); 
return false; 
} 
// --> 
