// JavaScript Document

function EnquiryForm()
{

	var sReturn;
	var sParam;

	var divLoading = document.getElementById('divLoading');
	var divForm = document.getElementById('divForm');
	
	if (EnquiryFormValidate())
	{
			
		sParam = 'method=SITE_SEND_ENQUIRY&noalerts=1&select=347&site=865';
	
				//PERSONAL DETAILS
		sParam = sParam + '&firstname=' + document.getElementById('txtFirstName').value; //first name
		sParam = sParam + '&surname=' + document.getElementById('txtSurname').value; //surname
		sParam = sParam + '&sq6310=' + document.getElementById('cboSurvey6310').value; //area code
		sParam = sParam + '&phone=' + document.getElementById('txtPhone').value; //phone
		sParam = sParam + '&email=' + document.getElementById('txtEmail').value; //email
		sParam = sParam + '&tradename=' + document.getElementById('txtBusinessName').value;//business name
		sParam = sParam + '&notes=' + document.getElementById('txtCustomerNotes').value;//notes
		
	
		sReturn = onDemandSite(sParam);
	
		if (sReturn.substring(0, 2) == 'OK')
			{	
			divForm.style.display = 'none';
			divLoading.innerHTML = '<strong>Thank you - your enquiry has been sent!</strong>';
			divLoading.style.display = 'block';

			sParam = 'method=SITE_SEND_EMAIL&site=865&subject=Enquiry from IAQ Website&message=' + 
			'This is a new enquiry from the IAQ Website' + '<br/><br/>' + 
			'Name: ' + document.getElementById('txtFirstName').value + ' ' + document.getElementById('txtSurname').value + '<br/>' + 
			'Phone: ' + document.getElementById('cboSurvey6310').options[document.getElementById('cboSurvey6310').selectedIndex].text + ' ' + document.getElementById('txtPhone').value + '<br/>' + 
			'Email: ' + document.getElementById('txtEmail').value + '<br/>' + 
			'Business Name: ' + document.getElementById('txtBusinessName').value + '<br/>' + 
			'Message: ' + document.getElementById('txtCustomerNotes').value + 
			'&email=iaq@iaqtech.com.au';
			
			sReturn = onDemandSite(sParam);

			}
			else
			{
			divLoading.style.display = 'none';
			window.alert('<strong>Sorry we couldn\'t send your enquiry</strong>');
			}
	}
}

function EnquiryFormValidate() 
{

	sOnDemandValidateMessage = '';
	sOnDemandValidateObject = '';

	onDemandValidate('txtFirstName', 'First Name', '');
	onDemandValidate('txtSurname', 'Surname', '');
	onDemandValidate('txtEmail', 'Email', '');
	
	if (!onDemandIsEmail(document.getElementById('txtEmail').value))
	{
		sOnDemandValidateMessage = sOnDemandValidateMessage + '\r\n # Not a valid email address.';
	}
	
	
	onDemandValidate('cboSurvey6310', 'Area Code', '');
	onDemandValidate('txtPhone', 'Phone Number', '');
	onDemandValidate('txtCustomerNotes', 'Message', '');


	if (sOnDemandValidateMessage != '')
	{
		window.alert('Sorry can\'t submit your enquiry as:\r\n' + sOnDemandValidateMessage);
		document.getElementById(sOnDemandValidateObject).focus();
		return (false);
	}
	else
	{
		return (true);
	}
}	


