/* auteur: NAU Nathan */
/* Date de création: 26/10/2004 */
function overMG(id,s)
{
	document.all["MenuG_L_"+id].style.backgroundColor=s?"#F0EFE9":"";
	document.all["MenuG_I_"+id].style.display=s?"":"none";
	document.all["MenuG_C_"+id].style.color=s?"#1F70B5":"#959482";
	document.all["MenuG_C_"+id].style.fontWeight=s?"bold":"";
}
function overMD(id,s)
{
	document.all["MenuD_C_"+id].style.color=s?"#1F70B5":"#959482"; //CCCABB
}


function isEmail(obj) 
{ return (obj.value.indexOf(" ") + "" == "-1"
       && obj.value.indexOf("@") + "" != "-1"
       && (obj.value.lastIndexOf(".") > obj.value.indexOf("@"))
       && obj.value != ""); }	

function isCP(obj) 
{ return (isNaN(obj.value)==false && obj.value.length==5); }

function CacheMail(mail,domain) 
{ this.location = 'mailto:' + mail + '@'+ domain; }