function saveFormulaire()
{

 nb = $("img.good").size();
 if( nb == 6 )
 {
  
   data = $(":input").serializeArray();
   
   $.post("/new/system/user/submitInscription.php",
         data,
         function(data){
          if(data.error == true)
          {
           $.prompt(data.msg);
           
          }
          else
          {
           $.prompt(data.msg,{
           callback:function()
           {
            window.location = "/new";
           }
           });
          }
         }
         ,"json"
         );
 
 }
 else
 {
  $.prompt(" All fields are not satisfied ! (3 characters minimum)");
 }

}

function saveContact()
{

 nb = $("img.good").size();
// alert(nb);
 //if( nb == 8 )
 //{
  
   data = $(":input").serializeArray();
   
   $.post("/new/system/user/submitContact.php",
         data,
         function(data){
          if(data.error == true)
          {
           $.prompt(data.msg);
           
          }
          else
          {
           $.prompt(data.msg,{
           callback:function()
           {
            window.location = "/new";
           }
           });
          }
         }
         ,"json"
         );
 
 //}
 //else
 //{
 // $.prompt(" All fields are not satisfied ! (3 characters minimum)");
 //}

}
