function onImageClick(url) {
	var preloader = new Image();
	preloader.onload = function()
	{
		
		$('#loading').width(preloader.width).height(preloader.height);
		$('#photo').attr('src', preloader.src);
		preloader.onload = null;
		preloader = null;
		$('#photo').show("slow");
	};
	$('#loading').width($('#photo').width()).height($('#photo').height());
	$('#photo').hide("slow", function () {
		$('#photo').attr('src', '');
		preloader.src = url;
		});
	 
	return false;
}

function windowPopupOpen(photo){
var win=window.open("","Photo", "height=700, width=700, location=no, scrollbars=yes, status=yes, menubar=no, toolbar=no, resizable=yes, top=50, left=50");
win.document.open()  
win.document.write('<html><body topmargin=0 marginheight=0 leftmargin=0 rightmargin=0 bottommargin=0 marginwidth=0><table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td><img src='+photo+'></td></tr></table></body></html>')  
win.document.close()
}  