		
	function ejs_nodroit()
		{
			return(false);
		}
	
	function DateModif()
		{
			date=document.lastModified
			jour=date.charAt(3)+date.charAt(4)
			mois=date.charAt(0)+date.charAt(1)
			annee=date.charAt(6)+date.charAt(7)+date.charAt(8)+date.charAt(9)
			todays_date(mois);
			document.write("Última modificación : "+jour+" "+document.month+" "+annee)
		}

	function NewWindows(Adress,Nom,large,haut)
		{
			var top=(screen.height-haut)/2;
			var left=(screen.width-large)/2;
			window.open(Adress,Nom,'width='+large+',height='+haut+',left='+left+',top='+top+',scrollbars=yes');
		}

function todays_date(month) {
	document.month=""
	if(month==01) {
		document.month="de enero de ";
	}
	if(month==2) {
		document.month="de febrero de ";
	}
	if(month==3) {
		document.month="de marzo de ";
	}
	if(month==4) {
		document.month="de abril de ";
	}
	if(month==5) {
		document.month="de mayo de ";
	}
	if(month==6) {
		document.month="de junio de ";
	}
	if(month==7) {
		document.month="de julio de ";
	}
	if(month==8) {
		document.month="de agosto de ";
	}
	if(month==9) {
		document.month="de septiembre de ";
	}
	if(month==10) {
		document.month="de octubre de ";
	}
	if(month==11) {
		document.month="de noviembre de ";
	}
	if(month==12) {
		document.month="de diciembre de ";
	}
}

