      $(document).ready(function(){

        $("input#wapercu").click(function(){
          wwidth = $("input#wwidth").val();
          wheight = $("input#wheight").val();
          if(wwidth>200 || wwidth<100){ alert("La largeur doit être comprise entre 100 et 200"); return; }
          if(wheight>400 || wheight<300){ alert("La hauteur doit être comprise entre 300 et 400"); return; }
          
          dataString = 'wwidth='+wwidth+'&wheight='+wheight;
              $.ajax({
                  type: "POST",
                  url: "/horaire-priere/ww/create_ww_hp.php",
                  data: dataString,
                  success: function(result) {
                    alert(result);  
                }
              })                        
        });
        
      	 
      
      });     