function getRef(id) 
{
  return document.getElementById(id)
}


function doPopup(vUrl, vWidth, vHeight, vHasScroll, vTitle, vReturn)
{
  var p = 'TOOLBAR=NO,LOCATION=NO,DIRECTORIES=NO,STATUS=NO,MENUBAR=NO,SCROLLBARS='+ vHasScroll +',RESIZABLE=NO,COPYHISTORY=YES,WIDTH='+ vWidth +',HEIGHT='+ vHeight;
  var j = window.open(vUrl, vTitle, p);
  if (vReturn) return j;
  else j.focus();
}


function envoiEmail(){
	var error = 0;
	$("#errornom").html("");
	$("#erroremail").html("");
	$("#errortel").html("");
	if($("#contact_nom").val().length==0 ) {
		$("#errornom").html("Votre nom est obligatoire");
		error = 1;
	}
	if($("#contact_email").val().length==0) {
		$("#erroremail").html("Votre email est obligatoire");
		error = 1;
	}
	if($("#contact_tel").val().length==0) {
		$("#errortel").html("Votre numéro de téléphone est obligatoire");
		error = 1;
	}
	if(error == 1)
		return false;
	
	$.getJSON("contact.php", { nom: $("#contact_nom").val(), email: $("#contact_email").val(), tel:$("#contact_tel").val(),message: $("#contact_message").val() },
		function success(data){
			$("#messageerror").html(data);
			alert(data);
		}
	);
}
