// JavaScript Document

$(document).ready(function(){ 
	
  $('#dialog_link_ami').click(function(){
		$('#dialog-ami').dialog('open');
		return false;			
	});


  $('#dialog-ami').dialog({ autoOpen: false,  modal: true, width: 575, resizable: false  });
					
			$('#submit').click(function(p_evt){
				
				if( $('#nom').val() == '' || $('#courriel').val() == '' || $('#commentaire').val() == '' ){
					alert('Veuillez remplir tous les champs');
					return false;
				}
				if(  !($('#courriel').val().match(/\b[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}\b/i)) ){
					alert('Veuillez inscrire un courriel valide.');
					return false;
				}
				
				
				$.post("http://www.lewalkin.ca/recommander-ce-site.inc.php",{ nom:$('#nom').val(),courriel:$('#courriel').val(),commentaire:$('#commentaire').val() } ,
				function(data)
      		 	{
					if(data=='true'){
						alert("Merci. Votre invitation a été envoyé avec succès.");
						$('#dialog-ami').dialog('destroy');
					}else{
						alert("Une erreur est survenue, veuillez réessayer plus tard. Merci.");
					}
					
				});
											
			});				
}); 

