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; } ';
	HTMLString+='</style></head>';
	HTMLString+='<body onBlur="self.close()" onClick="self.close()"><p><img src="intensive-auto_web/' + url + '" width="400" height="300"><br>';
	HTMLString+='<a href="intensive-auto_web/gallery.asp" 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();
}