function canigetns_check()
	{
	valid = true;
    	if ( document.ava_form.address.value == "" )
				{	
  					alert ( "Please fill in the 'Address' box." );
  					valid = false;
				}
		if ( document.ava_form.city.value == "" )
				{	
  					alert ( "Please fill in the 'Town/City' box." );
  					valid = false;
				}
		if ( document.ava_form.phone.value == "" )
				{	
  					alert ( "Please fill in the 'Daytime Phone Number' box." );
  					valid = false;
				}
		if ( document.ava_form.email.value == "" )
				{	
  					alert ( "Please fill in the 'Email Address' box." );
  					valid = false;
				}
		if ( document.ava_form.full_name.value == "" )
				{	
  					alert ( "Please fill in the 'Full Name' box." );
  					valid = false;
				}
	return valid;
	}

function ruralpromo_check()
	{
	valid = true;
    	if ( document.ruralpromo_form.promocode.value == "Type your promotional code here" )
				{	
  					alert ( "Please fill in the 'Promo Code' box." );
  					valid = false;
				}
		if ( document.ruralpromo_form.promocode.value == "" )
				{	
  					alert ( "Please fill in the 'Promo Code' box." );
  					valid = false;
				}		
		if ( document.ruralpromo_form.email.value == "" )
				{	
  					alert ( "Please fill in the 'email' box." );
  					valid = false;
				}
	return valid;
	}
	
function bizbbquote_check()
	{
	valid = true;
    	if ( document.bizbbquote_form.bus_name.value == "" )
				{	
  					alert ( "Please fill in the 'Business Name' box." );
  					valid = false;
				}		
		if ( document.bizbbquote_form.contact_name.value == "" )
				{	
  					alert ( "Please fill in the 'Contact Name' box." );
  					valid = false;
				}
		if ( document.bizbbquote_form.bus_addy.value == "" )
				{	
  					alert ( "Please fill in the 'Business Address' box." );
  					valid = false;
				}
		if ( document.bizbbquote_form.phone.value == "" )
				{	
  					alert ( "Please fill in the 'Phone' box." );
  					valid = false;
				}
		if ( document.bizbbquote_form.email.value == "" )
				{	
  					alert ( "Please fill in the 'Email' box." );
  					valid = false;
				}
	return valid;
	}
	
function cloudquote_check()
	{
	valid = true;
    	if ( document.cloudquote_form.company.value == "" )
				{	
  					alert ( "Please fill in the 'Company' box." );
  					valid = false;
				}		
		if ( document.cloudquote_form.name.value == "" )
				{	
  					alert ( "Please fill in the 'Name' box." );
  					valid = false;
				}
		if ( document.cloudquote_form.phone.value == "" )
				{	
  					alert ( "Please fill in the 'Phone Number' box." );
  					valid = false;
				}
		if ( document.cloudquote_form.email.value == "" )
				{	
  					alert ( "Please fill in the 'Email' box." );
  					valid = false;
				}
		if ( document.cloudquote_form.reference.value == "None" )
				{	
  					alert ( "Please select the Cloud Service you are interested in" );
  					valid = false;
				}
				
	return valid;
	}	

function cloudmaildist_check()
	{
	valid = true;
    	if ( document.cloudmaildist_form.company_name.value == "" )
				{	
  					alert ( "Please fill in the 'Company Name' box." );
  					valid = false;
				}		
		if ( document.cloudmaildist_form.full_name.value == "" )
				{	
  					alert ( "Please fill in the 'Full Name' box." );
  					valid = false;
				}
		if ( document.cloudmaildist_form.city.value == "" )
				{	
  					alert ( "Please fill in the 'Country' box." );
  					valid = false;
				}
		if ( document.cloudmaildist_form.phone.value == "" )
				{	
  					alert ( "Please fill in the 'Phone' box." );
  					valid = false;
				}
		if ( document.cloudmaildist_form.email.value == "" )
				{	
  					alert ( "Please fill in the 'Email' box." );
  					valid = false;
				}
	return valid;
	}
	
	
	
