<!--
function setdefault(objform,action){
	if(action==false){
		if(objform.value==""){objform.value=objform.title;}
	}else{
		if(objform.value==objform.title){objform.value="";}
	}
}
/**
 * Ouverture d'une popup avec scroll bars
 */ 
function openPopScroll(url, nom, largeur, hauteur) {
  newWindow = open(url, nom, "width="+largeur+",height="+hauteur+",toolbar=no,scrollbars=yes,resizable=yes,titlebar=yes")
  newWindow.moveTo( (parseInt(screen.width)-largeur)/2 ,(parseInt(screen.height)-hauteur)/2 );
  newWindow.focus();
}
//-->