// JavaScript Document
function pop(url){
	var HTMLString;
	var newwindow;
	var newdocument;
	
	HTMLString='<html><head><title>Photo gallery</title>';
	HTMLString+='<style>body { background: #fff; text-align: center;
color: #000; font: .7em Verdana, Arial, sans-serif; }</style></head>';
	HTMLString+='<body onBlur="self.close()"
onClick="self.close()"><p><img src="' + url + '" width="400"
height="300"><br>';
	HTMLString+='<a href="staging.htm" onclick="self.close();">close
window</a></p></body></html>';
	newwindow = window.open('blank.htm', 'photo',
'width=450,height=350,resizable');
	newwindow.document.open();
	newwindow.document.write(HTMLString);
	HTMLString='';
	newwindow.document.close();
	newwindow.focus();
}