// JavaScript Document
function antiSpam(pName, pDomaine, pType)
{
	if( pType == "texte" ) {
	    document.write(pName+"@"+pDomaine);
	}
	else{
	    document.location = "mailto:"+pName+"@"+pDomaine;
	}
	
}
/**********************************************/
/** But : Afficher / Cacher le menu déroulant**/
/**********************************************/

function menuderoulant(calque,etat)
	{
		document.getElementById(calque).style.visibility=etat;
	}
		

