// Blue Sky Markets Website - Stallholder Application Form Validation
function	validateForm()
{
	if(document.appform.elements["firstname"].value.length == 0)
	{
		alert("Please enter the your first name.");
		return false;
	}
	if(document.appform.elements["surname"].value.length == 0)
	{
		alert("Please enter your last name.");
		return false;
	}
		if(document.appform.elements["postaddress"].value.length == 0)
	{
		alert("Please enter your postal address.");
		return false;
	}
		if(document.appform.elements["telbus"].value.length == 0)
	{
		alert("Please enter your business phone number.");
		return false;
	}
		if(document.appform.elements["email"].value.length == 0)
	{
		alert("Please enter your email address.");
		return false;
	}
        	if(document.appform.elements["category"].value == 'x')
			{
  
         alert("Please select your product category.");
         return false;
     }
	      if (document.appform.applySouthBank.checked == false) {
         alert("You must agree to the terms and conditions to apply.\n");
         return false;
     }
	 else
	document.appform.apply.value="processing your application";
	document.getElementById('apply').disabled=true;
	return true;
}

// Blue Sky Markets Website - Stallholder Application Form Validation
function	validateApprovedForm()
{
	if(document.approvedappform.elements["firstname"].value.length == 0)
	{
		alert("Please enter the your first name.");
		return false;
	}
	if(document.approvedappform.elements["surname"].value.length == 0)
	{
		alert("Please enter your last name.");
		return false;
	}
	      if (document.appform.applySouthBank.checked == false) {
         alert("You must agree to the terms and conditions to apply.\n");
         return false;
     }
	 else
	document.approvedappform.apply.value="processing your application";
	document.getElementById('apply').disabled=true;
	return true;
}

