function popup(url,hauteur,largeur) {
	var winl = (screen.width - largeur) / 2;
	var wint = (screen.height - hauteur) / 2;
	winprops = 'height='+hauteur+',width='+largeur+',top='+wint+',left='+winl+',scrollbars=auto,resizable'
	win = window.open(url, 'win', winprops)
	}

function effacer()
{
confirmation=confirm("Êtes sûr de vouloir supprimer l'enregistrement?");
if(confirmation==false){ return false }
if(confirmation==true){ return true }
}



function fen(numero,largeur,hauteur,nom)
{
fen2 = window.open(numero,nom,"width="+largeur+",height="+hauteur+",resizable=0,scrollbars=1");
fen2.focus();
}