
function next_client() {
  $.get("/index.php?name=excute&action=client", function(data){
    $('#customer_talk_body').html(data);
  });
}

function contact_form() {
  data = new Object();
  $("#contact_form input").each(function (i) {
    //data.this.id = this.value;
    if (this.id) {
      eval("data."+this.id+" = this.value;");
    }
    });
    
$.post("/index.php?name=index&action=contact", data,
  function() {
    $("#contact_form").html("<center><h3>תודה רבה, פנייתך נתקבלה במערכת.<br/>נציג החברה יצור עמך קשר בהתאם לבקשתך. </h3></center>");
  });
    
}

function facebook_share(source, title) {
	newwindow=window.open("http://www.facebook.com/sharer.php?u="+source+"&t="+escape(title),'name','height=400,width=634');
	if (window.focus) {newwindow.focus()}
}
