/********************************
www.studio-calico.com - v1.0
(c) Copyright 2009 Calico
contact@studio-calico.com
********************************/

function wop(nompage,largeur,hauteur,scrollb) {	window.open("http://www.pothier-sonorisation.fr/"+nompage,"pop","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scrollb+",resizable=no,width="+largeur+",height="+hauteur);
}

function GetId(id) {
	return document.getElementById(id);
}

function checkForm(formid) {
	theform=document.getElementById(formid);
    if(formid=="contact") {
		if(theform.nom.value=="") {alert("Veuillez saisir votre Nom");theform.nom.focus();}
		else if(theform.msg.value=="") {alert("Veuillez saisir un message");theform.msg.focus();}
		else if((theform.mel.value.indexOf("@")>=0) && (theform.mel.value.indexOf(".")>=0)) {
			  var reg = /^[a-z0-9._-]+@[a-z0-9.-]{2,}[.][a-z]{2,3}$/
			  if(reg.exec(theform.mel.value) == null) alert("L'adresse mail que vous avez entré est invalide");
			  else theform.submit();
		}
		else {alert("L'adresse mail que vous avez entré est invalide");theform.mel.focus();}
    }   
}
