/* Marque page et favoris */
function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
// Contact //
function ValiderContact()
{
	var errorMsg = "";
	if(document.formmail.votre_email.value.indexOf('@') == -1) {
		alert("Entrez une adresse email valable");
		document.formmail.votre_email.focus();
		return false;
	}
	
	if (document.formmail.nom.value==""){
		errorMsg += "\n\t- Entrez votre pseudo";	
	}
	
	if (document.formmail.message.value==""){
		errorMsg += "\n\t- Entrez un message";	
	}
	if (document.formmail.sujet.value==""){
		errorMsg += "\n\t- Entrez un sujet";	
	}
	if (errorMsg != ""){
		msg = "________________________________________________________________\n\n";
		msg += "Des erreurs ont été détectées.\n";
		msg += "________________________________________________________________\n\n";
		msg += "\n";
		errorMsg += alert(msg + errorMsg + "\n\n");
		return false;
	}
	
	
	return true;
}
function stopthepop(){
if (top.console){
  top.console.stopit();
}
}
// Fin contact //
if(top != self) top.location.href=location.href;
