var HOME_URL="";
  
function set_HOME_URL(url){
  HOME_URL=url;
}

function odeslat_poptavku() { 
  
  //$("#mailbox").addClass('loading');  
  param_email = ($("#odeslat_poptavku [name=param[email]]").val());
  param_name = ($("#odeslat_poptavku [name=param[name]]").val()); 
  param_phone = ($("#odeslat_poptavku [name=param[phone]]").val()); 
  param_text = ($("#odeslat_poptavku [name=param[text]]").val());
  param_place = ($("#odeslat_poptavku [name=param[place]]").val());
      
  
  $.get(HOME_URL+"rq/action.php", 
          {
            action: "odeslat_poptavku",
            'param[email]':param_email,
            'param[name]':param_name,
            'param[phone]':param_phone,
            'param[text]':param_text,
            'param[place]':param_place,
            time:new Date().getTime()
          },
          function(data){
            $("#mailbox #status").html(data);
            if (!data) {
              $("#odeslat_poptavku .send_form").html('Děkujeme za zaslanou poptávku, budeme Vás co nejdříve kontaktovat.');
            }else{
              $("#odeslat_poptavku .echo").html('<div class="err">'+data+'</div>');
            }
            $("#mailbox").removeClass('loading');         
          }
  );
}  
    

