function popItCentre(url,hauteur,largeur) {
var demih=screen.height/2;
var demiw=screen.width/2;
window.open(url, '_blank', 'toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width='+largeur+', height='+hauteur+', top='+(demih-(hauteur/2))+', left='+(demiw-(largeur/2))+'');
}

function popPhoto(lelien,letitre) {
	var demih=screen.height/2;
	var demiw=screen.width/2;
	var hauteurF=640;
	var largeurF=800;
	
	if (screen.height<650) {
	hauteurF=500;
	largeurF=700;
	}
	window.open('site_photo.php?photo=media/'+lelien+'&titre='+letitre+'', '_blank', 'toolbar=0, location=0, directories=0, status=0, scrollbars=auto, resizable=1, copyhistory=0, menuBar=0, width='+largeurF+', height='+hauteurF+', top='+(demih-(hauteurF/2))+', left='+(demiw-(largeurF/2))+'');
}


function popItCentreSimple(url,hauteur,largeur) {
var demih=screen.height/2;
var demiw=screen.width/2;
window.open(url, '_blank', 'toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width='+largeur+', height='+hauteur+', top='+(demih-(hauteur/2))+', left='+(demiw-(largeur/2))+'');
}