// JavaScript Document
function validCallMeBack() {
		var idDivModule = "#ModulesCallMeBack";
		var client_nom = $("#callMeBack_client_nom").val();
		var client_tel = $("#callMeBack_client_tel").val();
		var reference = $("#callMeBack_reference").val();
		var client_captcha = $("#callMeBack_captcha").val();
		$.get("../includes/utils/modules.php", { action: "CallMeBack", client_nom : client_nom, client_tel:client_tel, client_captcha:client_captcha, reference:reference},
		  function(data){
			$("div.ModuleCallMeBack").html("<div class=\'ModuleCallMeBackForm\'>"+data+"</div>");
			//alert(data);
		  });
	
}
function validDemandeInfoCDC() {
		alert("Nom : "+document.forms['demandeInfoCDC'].elements['demandeInfoCDC_client_nom'].value);
/*		var docForm = document.demandeInfoCDC;
		var idDivModule = "#ModulesDemandeInfo";
		var client_nom =  document.getElementById("demandeInfoCDC_client_nom").value;
		alert("CDC"+client_nom);
		var client_mail = $("#demandeInfoCDC_client_mail").val();
		var reference = $("#demandeInfoCDC_reference").val();
		$.get("../includes/utils/modules.php", { action: "DemandeInfo", client_nom : client_nom, client_mail:client_mail, reference:reference},
		  function(data){
			$("div.ModuleDemandeInfoForm").html("<p align='center'>"+data+"</p><p align='center'><a href='#' onclick='javascript:$.closePopupLayer(\"formDemandeInfo\");'>Retour au site</a></p>");
			//alert(data);
		  });*/
}

function validSendToAFriendCDC() {
		var idDivModule = "#ModulesSendToAFriend";
		var client_nom = $("#sendToAFriendCDC_client_nom").val();
		var client_mail = $("#sendToAFriendCDC_client_mail").val();
		var client_friend = $("#sendToAFriendCDC_client__friend").val();
		var annonce_id = $("#sendToAFriendCDC_annonce_id").val();
		$.get("../includes/utils/modules.php", { action: "SendToAFriend", client_nom : client_nom, client_mail:client_mail, client_friend:client_friend, annonce_id:annonce_id},
		  function(data){
			$("div.ModuleSendToAFriendForm").html("<p align='center'>"+data+"</p><p align='center'><a href='#' onclick='javascript:$.closePopupLayer(\"formSendToAFriend\");'>Retour au site</a></p>");
			//alert(data);
		  });
	
}
function validDemandeInfo() {
		var idDivModule = "#ModulesDemandeInfo";
		var client_nom = $("#demandeInfo_client_nom").val();
		alert(client_nom);
		var client_mail = $("#demandeInfo_client_mail").val();
		var reference = $("#demandeInfo_reference").val();
		$.get("../includes/utils/modules.php", { action: "DemandeInfo", client_nom : client_nom, client_mail:client_mail, reference:reference},
		  function(data){
			$("div.ModuleDemandeInfoForm").html("<p align='center'>"+data+"</p><p align='center'><a href='#' onclick='javascript:$.closePopupLayer(\"formDemandeInfo\");'>Retour au site</a></p>");
			//alert(data);
		  });
}

function validSendToAFriend() {
		var idDivModule = "#ModulesSendToAFriend";
		var client_nom = $("#sendToAFriend_client_nom").val();
		var client_mail = $("#sendToAFriend_client_mail").val();
		var client_friend = $("#sendToAFriend_client__friend").val();
		var annonce_id = $("#sendToAFriend_annonce_id").val();
		$.get("../includes/utils/modules.php", { action: "SendToAFriend", client_nom : client_nom, client_mail:client_mail, client_friend:client_friend, annonce_id:annonce_id},
		  function(data){
			$("div.ModuleSendToAFriendForm").html("<p align='center'>"+data+"</p><p align='center'><a href='#' onclick='javascript:$.closePopupLayer(\"formSendToAFriend\");'>Retour au site</a></p>");
			//alert(data);
		  });
	
}
