function pop_photo(imageName,alt) {
	newWindow = window.open('','newWindow','scrollbars=yes,width=10,height=10');
	newWindow.document.open();
	newWindow.document.write('<html><title>'+imageName+'</title>');
	newWindow.document.write('<head>');
	newWindow.document.write('</head>');
	newWindow.document.write('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img bgcolor="#FFFFFF" id="photo" onload="window.resizeTo(photo.width+27,photo.height+120);" src='+imageName+' alt='+alt+'>'); 
	newWindow.document.write('<br><span style="font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; color:#000000; font-size:11px; line-height:15px; padding-left:5px;">'+alt+'</span>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}