function validateGetListedForm(){
	
		if (isBlank(document.listForm.txtCompName.value)){
		alert ("Please specify your Company Name!");
		return false;
		}
		
		if (isBlank(document.listForm.txtAdd1.value)){
		alert ("Please specify Address Line 1!");
		return false;
		}
		
		if (isBlank(document.listForm.txtAdd2.value)){
		alert ("Please specify Address Line 2!");
		return false;
		}
		
		if (isBlank(document.listForm.txtAdd3.value)){
		alert ("Please specify Address Line 3!");
		return false;
		}
		
		if (isBlank(document.listForm.txtTown.value)){
		alert ("Please specify a Town!");
		return false;
		}
		
		if (isBlank(document.listForm.txtCounty.value)){
		alert ("Please specify a County!");
		return false;
		}
		
		if (isBlank(document.listForm.txtPostCode.value)){
		alert ("Please specify Address Line 3!");
		return false;
		}	
	
		if (!isEmail(document.listForm.txtCompEmail.value)){
		alert ("The Email Address is not a valid company email address!");
		return false;
		}
		
		if (isBlank(document.listForm.txtTel.value)){
		alert ("Please specify a Company Telephone Number!");
		return false;
		}
		
		if (isBlank(document.listForm.txtListTown.value)){
		alert ("Please specify a the Town you wish top be listed in!");
		return false;
		}
		
		if (isBlank(document.listForm.txtConName.value)){
		alert ("Please specify a Contact Name!");
		return false;
		}
		
		if (isBlank(document.listForm.txtListTown.value)){
		alert ("Please specify a the Town you wish top be listed in!");
		return false;
		}

		if (!isEmail(document.listForm.txtConEmail.value)){
		alert ("The Email Address is not a valid contact email address!");
		return false;
		}
		
		if (isBlank(document.listForm.txtConPhone.value)){
		alert ("Please specify a Contact Phone Number!");
		return false;
		}
	return true;
}
