function clearText(thefield)
{
	if (thefield.defaultValue==thefield.value)
		thefield.value = ""
} 

function conf()
{
	if ( confirm("Etes-vous sūr de vouloir supprimer cet enregistrement?") )
		return(true);
	else
		return(false);
}

function PopupCentrer(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

