function ouvrir(url)
{
	fen=window.open(url,'fen_agenda','fullscreen=no,toolbar=no,location=no,height=450,width=550,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=50,left=50,alwaysRaised=yes');
	fen.window.focus();
}
		
function redirect(url)
{
	document.location.href=url;
}

function ouvrir2(url,h,w,nom)//Ouvre un pop up avec l'url et défini la largeur et la hauteur
{
	fen=window.open(url,nom,'fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=50,left=50,alwaysRaised=yes,height='+h+',width='+w+'');
	fen.window.focus();
}

function ouvrir3(url,w,h,nom)//Pour afficher les photos agrandies des chevaux et poulinières
{
	fen=window.open('aff_photo.php?tof='+url,nom,'fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=250,left=250,alwaysRaised=yes,height='+h+',width='+w+'');
	fen.window.focus();
}