<!--

function validate_request() {
  var customer = document.getElementById('txtCustomer')
  var phone = document.getElementById('txtPhone')
  var contact = document.getElementById('txtContact')
  
  if (customer.value=='') {
    alert('Please provide you customer/company name!');
	customer.focus();
	return false
  }
  
  if (contact.value=='') {
    alert('Please provide your contact name!');
	contact.focus();
	return false
  }
  
  if (phone.value=='') {
    alert('Please provide your phone number!');
	phone.focus();
	return false
  }
  
  return true
}

function makeDate() {
   now = new Date();
   return (now.getMonth()+1) + '/' + now.getDate() + '/' +  now.getYear();
}

-->