// JavaScript Document
/* fonctions relatives à l'AJAX utilis&eacute; dans les pages */ 
function createXMLHttpRequest() {
	try { return new ActiveXObject("Msxml2.XMLHTTP");    } 
	catch(e) {}                
	try { return new ActiveXObject("Microsoft.XMLHTTP"); } 
	catch(e) {}                
	try { return new XMLHttpRequest();                   } 
	catch(e) {}                
	//alert("XMLHttpRequest not supported");               
	return null;
}            
function file(fichier)     {    
	xhr_object = createXMLHttpRequest();
	xhr_object.open("GET", fichier, false);
	xhr_object.send(null);
	if(xhr_object.readyState == 4) return(xhr_object.responseText);
	else return(false);    
}   


var crlf
crlf = "<br />";
var errcp;
var errvin;
var msg;
var cgu;
var msg2;
var vinmsg;
var errmsg;
errcp=true;
errvin=true;
msg="Votre devez saisir un code privil\350ge";
cgu="";
msg2="Votre num\351ro de chassis est obligatoire";
vinmsg="";
errmsg="";

function valideCP(cp)
{


cgu = file("http://www.clubtoyota.fr/verifcp.php?cp="+cp);
if(cgu=="ldc")
	{
		msg="En cliquant sur le bouton 'valider', vous acceptez le <a href='http://www.clubtoyota.fr/img/pdf/reglementldc.pdf' target='_blank'>r\350glement</a>";
		errcp=false;
	}
else if(cgu=="pack")
	{
		msg="En cliquant sur le bouton 'valider', vous accpetez le <a href='http://www.clubtoyota.fr' target='_blank'>r\350glement</a>";
		errcp=false;
	}
else
	{
		msg="Votre code est invalide";
		errcp=true;
	}
	cgu_div = document.getElementById("cgu");
	cgu_div.innerHTML = msg+"<br>"+msg2;	
	
}

function valideVIN(vin)
{
vin=vin.replace(" ","");

vinmsg = file("http://www.clubtoyota.fr/verifvin.php?vin="+vin);
vinmsg = vinmsg.split(' ').join('');


if(vinmsg=="vinexiste" && vin!="")
	{
		msg2="<font color=red>Attention, un compte a d\351j\340 \351t\351 cr\351\351 avec ce num\351ro de ch\342ssis. <a href=http://www.clubtoyota.fr/fr-FR/profil/mot-de-passe-perdu.html>J'ai perdu mon mot de passe</a></font>";
		errvin=true;
	}
else if(vinmsg!="false" && vin!="")
	{
		msg2="<b>Mon v\351hicule : </b> Toyota "+vinmsg;
		document.getElementById('imgveh').src = "http://www.clubtoyota.fr/img/minis-toyota/"+vinmsg.toLowerCase()+".jpg";
		document.getElementById('imgveh').width = "111";
		document.getElementById('imgveh').height = "70";
		errvin=false;
	}
else
	{
		msg2="<font color=red>Attention, ce num\351ro de ch\342ssis n'est pas valide. Veuillez v\351rifier que vous avez saisi celui-ci correctement.</font>";
		errvin=true;
	}
	cgu_div = document.getElementById("cgu");
	//old
	//cgu_div.innerHTML = msg+"<br>"+msg2;	
	//new
	cgu_div.innerHTML = msg2;	
	
}


function valideinsc(errvin)
{
	if(errvin==false)
		{
			//top.location.href = "http://www.clubtoyota.fr/fr-FR/profil/inscription.html";
			top.location.href = "http://www.clubtoyota.fr/fr-FR/profil/inscription-coordonnees.html";
		}
	
}

function valideEMAIL(email)
{
if(email!=""){
emailmsg = file("http://www.clubtoyota.fr/verifemail.php?email="+email);
emailmsg = emailmsg.split(' ').join('');
}
else{
emailmsg = "vide";

}

if(emailmsg=="emailexiste"){
var email2=email;
errmail="Cet email est d\351j\340 inscrit, <a href=http://www.clubtoyota.fr/fr-FR/profil/mot-de-passe-perdu.html>cliquez ici si vous avez perdu votre mot de passe</a>";
	mail_div = document.getElementById("erreurmail");
	
	mail_div.innerHTML = errmail;
	document.inscription.email.value='';
	return false;

}

else{
	
}
}