// cette fonction charge les scripts onload
function loader() {
	//alert("loader");
}
/* 
 * ouvre une fenetre pop-up de largeur et hauteur identique a la photo
 * centre la fenetre horizontalement et verticalement (screenX et screenY pour mozilla,  left et top pour IE)
 */
function ouvrir(photo,largeur,hauteur) {
	X = (screen.width-largeur)/2;
	Y = (screen.height-hauteur)/2;
	window.open('photo.php5?photo='+photo,'photo','location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,directories=no,hotkeys=no,width='+largeur+',height='+hauteur+',screenX='+X+',screenY='+Y+',left='+X+',top='+Y);
}

function aller(obj){
  location.href = obj.value;
}

//document.onload = loader();
