function dropdown_redirect(){
	parent.location.href = document.formRedirect.parcourir.value;
}
function clear_search_box(){
	document.search_form.recherche.value = "";
}
function setDateFR(){


var weekday=new Array(7);
weekday[0]="Dimanche";
weekday[1]="Lundi";
weekday[2]="Mardi";
weekday[3]="Mercredi";
weekday[4]="Jeudi";
weekday[5]="Vendredi";
weekday[6]="Samedi";

	var d=new Date()
	var monthname=new Array("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre");
	var myDate = "Nous sommes " + " " + weekday[d.getDay()] + ", " + d.getDate() + " " + monthname[d.getMonth()] + " " + d.getFullYear();
	document.affDate.setDate.value = myDate;
}


function eraseEmail()
{
	document.formulaire.data.value = "";
}

function valid_form_entreprise_en()
{
	x = document.form;
	if(x.nom.value == "" || x.prenom.value == "" || x.adresse.value == "" || x.ville.value == ""){
		alert("All fields mark with an asterisk are mandatory");
		return false;
	}
	else if(x.province.value == "" || x.pays.value == "" || x.codePostal.value == "" || x.telephone.value == ""){
		alert("All fields mark with an asterisk are mandatory");
		return false;
	} 
	return true;
}

function pop( url, width, height, options){
  if ( ! options ) options = "scrollbars=no,menubar=no,toolbar=no,location=no,status=no,resizable=no,left=1,top=1";
  window.open( url,"", "width=" + width + ",height=" + height + "," + options );
}