// loading graphic for AJAX divs
/* CHANGE THIS NEXT LOADING MESSAGE TO USE A LANGUAGE DEFINE!! */
var loading = '<img src="images/loading.gif" alt="LOADING" />';

function OnLoad() {
  // display the default mail form
  $('#mail_div').html(loading).load('index_interfaces.php?action=default_mail_form');
}

function SendMessage() {  var form_name = document.getElementById('name').value;  var form_telephone = document.getElementById('telephone').value;  var form_email = document.getElementById('email').value;  var form_enquiry = document.getElementById('enquiry').value;

  // blast a loading gif into the div
  $('#mail_div').html(loading);
  
  // now make the ajax post request
  $.post('index_ajax.php?action=send_message', { name: form_name, telephone: form_telephone, email: form_email, enquiry: form_enquiry }, function(data) {
    $('#mail_div').html(data);
  });
}

