	function popup(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><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	    newWindow.document.write('<a href="javascript:self.close();" style="text-decoration:none;"><img src='+imageName+' width='+imageWidth+' height='+imageHeight+' border=0></a>'); 
	    newWindow.document.write('</body></html>');
	    newWindow.document.close();
	    newWindow.focus();
	}
	
	function popup_scroll(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	    newWindow = window.open("","newWindow","width=800,height=655,left="+posLeft+",top="+posTop);
	    newWindow.document.open();
	    newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	    newWindow.document.write('<div style="width:800; height:655; overflow:auto;"><a href="javascript:self.close();" style="text-decoration:none;"><img src='+imageName+' width='+imageWidth+' height='+imageHeight+' border=0></a></div>'); 
	    newWindow.document.write('</body></html>');
	    newWindow.document.close();
	    newWindow.focus();
	}