
      	var isOpen=false;
        function view(imageURL,width,height){
        	if (isOpen) {imgWin.close();}
        	imgWin=window.open('about:blank','','scrollbars=no,width='+width+',height='+height);
        	with (imgWin.document){
        		writeln('<html><head><title>Microfossil Research</title>');
            writeln('<style>body{margin:0px;}table{width:100%;height:100%}td{vertical-align:middle;text-align:center;width:100%};</style>');
        		writeln('</head><body bgcolor=ffffff scroll="no" onload="self.focus()">');
            writeln('<table border="0"><tr><td>');    
        		writeln('<img src='+imageURL+' style="display:block">');
            writeln('</td></tr></table>');    
            writeln('</body></html>');
        		isOpen=true; 
        	}
        }
