//------------------------------------------------------------------------------------
// Script Notice Légale
//------------------------------------------------------------------------------------
function showCPR(s) {
       var y = new Date().getYear();
       if (y<1900) y+=1900;
       if (s!=y)
          document.write(s + " - " + y);
	       else
          document.write(y);
}
//------------------------------------------------------------------------------------
// Test champs formulaire
//------------------------------------------------------------------------------------
function isEmail(obj) {
       if (obj.value.indexOf(" ") + "" == "-1"
       && obj.value.indexOf("@") + "" != "-1"
       && (obj.value.lastIndexOf(".") > obj.value.indexOf("@"))
       && obj.value != "") return true;
       else return false;
}
function isTel(obj) {
	if (isNaN(obj.value)==false && obj.value.length==10)  return true;
	else return false;
}
//------------------------------------------------------------------------------------
// FixFlash
//------------------------------------------------------------------------------------
function fixFlash(s) { document.write(s);}
//------------------------------------------------------------------------------------
// Cache mail
//------------------------------------------------------------------------------------
function CacheMail(mail, domain) {
    this.location = 'mailto:' + mail + '@' + domain;
}
