// JavaScript Document



function formValidation()	
{
var valid = 0;
	if(document.maintenance.BusinessName.value=="")
	{
     	window.alert("Please enter your business name.");
		document.maintenance.BusinessName.focus();
		return false;
  	}
	if(document.maintenance.SiteContact.value=="")
	{
     	window.alert("Please enter your site contact.");
		document.maintenance.SiteContact.focus();
		return false;
  	}
	
	if(document.maintenance.Phone.value=="")
	{
     	window.alert("Please enter your phone number.");
		document.maintenance.Phone.focus();
		return false;  
	}
	
	if(document.maintenance.NumberOfPhones.value=="")
	{
     	window.alert("Please enter the the number of phones.");
		document.maintenance.NumberOfPhones.focus();
		return false;  
	} 
	
	if(document.maintenance.TypeOfPhoneSystem.value=="")
	{
     	window.alert("Please enter the type of phone system.");
		document.maintenance.TypeOfPhoneSystem.focus();
		return false;  
	} 
	
	if(document.maintenance.IncomingTelephoneLines.value=="")
	{
     	window.alert("Please enter the incoming telephone line.");
		document.maintenance.IncomingTelephoneLines.focus();
		return false;  	
	} 
	
	var radio_choice = false;
	for (counter = 0; counter < document.maintenance.respond.length; counter++)
	{
		radio_choice = radio_choice || (document.maintenance.respond[counter].checked);
	}
	if (!radio_choice)
	{		
		window.alert("Do you want 8am-5pm Monday-Friday or 24/7 support?");
		return false;
	}
return true;
	

}

