
function Val()
{
	with (document.forms[0]) {
		if (name.value.length == 0 || org.value.length == 0 || telephone.value.length == 0 || email.value.length == 0 || premises_type.selectedIndex == 0 || lease.selectedIndex == 0 || budget.value.length == 0 || completion_date.value.length == 0 || request.selectedIndex == 0 || planning_application.selectedIndex == 0 || trading_period.value.length == 0 || address.value.length == 0 || city.value.length == 0 || postcode.value.length == 0){
			alert("Please complete all fields.");
				return false;
			}
		return true;
	}
}
