function dropdown_redirect(){
	parent.location.href = document.formRedirect.parcourir.value;
}
function clear_search_box(){
	document.search_form.recherche.value = "";
}
function setDateFR(){
	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 = d.getDate() + " " + monthname[d.getMonth()] + " " + d.getFullYear();
	document.affDate.setDate.value = myDate;
}
function setDateEN(){
	var d=new Date()
	var monthname=new Array("January","Febuary","March","April","May","June","July","August","September","October","November","December");
	var myDate = monthname[d.getMonth()] + " " + d.getDate() + " "  + d.getFullYear();
	document.affDate.setDate.value = myDate;
}
function valid_form_particulier()
{
	x = document.form_info;
	if(x.nom.value == "" || x.prenom.value == "" || x.adresse.value == "" || x.ville.value == ""){
		alert("Les champs avec un astérisque sont obligatoires");
		return false;
	}
	else if(x.province.value == "" || x.pays.value == "" || x.codePostal.value == "" || x.telephone.value == ""){
		alert("Les champs avec un astérisque sont obligatoires");
		return false;
	} 
	return true;
} 
function valid_form_particulier_en()
{
	x = document.form_info;
	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 valid_form_entreprise()
{
	x = document.form_info1;
	if(x.nom.value == "" || x.prenom.value == "" || x.adresse.value == "" || x.ville.value == ""){
		alert("Les champs avec un astérisque sont obligatoires");
		return false;
	}
	else if(x.province.value == "" || x.pays.value == "" || x.codePostal.value == "" || x.telephone.value == ""){
		alert("Les champs avec un astérisque sont obligatoires");
		return false;
	} 
	return true;
}
function valid_form_entreprise_en()
{
	x = document.form_info1;
	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 );
}