function ImagePopup(that, url) {
 	    remote = window.open('', "popupwindow","width=660,height=500,left=50,top=50,resizable=yes,toolbar=no,scrollbars=no");
 	    remote.document.write('<html><head><title>Foto</title></head><body><img src="' + url + '" /></body></html>');
 	    remote.document.close();
		remote.focus();
		return false;
}
