// JavaScript Document

function setMainDivHeight(){
	mainLeft = window.document.getElementById("mainLeft").offsetHeight;
	mainCenter = window.document.getElementById("mainCenter").offsetHeight;
	mainRight = window.document.getElementById("mainRight").offsetHeight;
	
} // end function


function resize(){
	
	if((mainLeft > mainCenter) && (mainLeft > mainRight)){
		window.document.getElementById("main").style.height = mainLeft + "px";
		
	}else if((mainCenter > mainLeft) && (mainCenter > mainRight)){
		window.document.getElementById("main").style.height = mainCenter + "px";
		
	}else if((mainRight > mainCenter) && (mainRight > mainLeft)){
		window.document.getElementById("main").style.height = mainRight + "px";
		
	}
} // End Function




function ajaxError(code, message) {
	alert("Probleme de communication avec le serveur : " + code + " - " + message);

} // end function

function openNewWindow() {
 window.open("contactOK.php","_parent","_parent","");
 }


function verifFormulaire() {
	civilite = document.formulaire.civilite.value;
	organisme = document.formulaire.organisme.value;
	prenom = document.formulaire.prenom.value;
	nom = document.formulaire.nom.value;
	mail = document.formulaire.mail.value;
	telephone = document.formulaire.telephone.value;
	demande = document.formulaire.demande.value;
	adresse = document.formulaire.adresse.value;
	cp = document.formulaire.cp.value;
	ville = document.formulaire.ville.value;
	
	
	
	if((civilite != "") && (prenom != "") && (nom != "") && (mail != "") && (telephone != "") && (demande != "")) {
		new AjaxConnector('sendMail.php', ["civilite=" + civilite,"organisme=" + organisme,"prenom=" + prenom, "nom=" + nom, "adresse=" + adresse, "cp=" + cp, "ville=" + ville,"mail=" + mail, "telephone=" + telephone,"demande=" + demande], openNewWindow, ajaxError)
	
	}else{
		tab = new Array();
		if(civilite == "") { tab.push("civilite"); document.formulaire.civilite.style.border = "thin solid #990000"; } else { document.formulaire.civilite.style.border = "thin solid #000000"; }
		if(nom == "") { tab.push("nom"); document.formulaire.nom.style.border = "thin solid #990000"; } else { document.formulaire.nom.style.border = "thin solid #000000"; }
		if(prenom == "") { tab.push("prenom"); document.formulaire.prenom.style.border = "thin solid #990000"; } else { document.formulaire.prenom.style.border = "thin solid #000000"; }
		if(mail == "") { tab.push("mail"); document.formulaire.mail.style.border = "thin solid #990000"; } else { document.formulaire.mail.style.border = "thin solid #000000"; }
		if(telephone == "") { tab.push("telephone"); document.formulaire.telephone.style.border = "thin solid #990000"; } else { document.formulaire.telephone.style.border = "thin solid #000000"; }
		if(demande == "") { tab.push("demande"); document.formulaire.demande.style.border = "thin solid #990000"; } else { document.formulaire.demande.style.border = "thin solid #000000"; }
		
		
		document.getElementById("erreur").innerHTML = "Veuillez remplir ces champs : " + tab.join(", ") + "<br /><br />";
		
	} // end if
} // end function

