// JavaScript Document
function add_Validator_volunteer(theForm)
{
	if (theForm.volunteer_name.value == "Required")
  {
    alert("Please enter your name.");
    theForm.volunteer_name.focus();
    return (false);
  }
  if (theForm.volunteer_tel.value == "Required")
  {
    alert("Please enter your telephone number.");
    theForm.volunteer_tel.focus();
    return (false);
  }
  if (theForm.volunteer_mobile.value == "Required")
  {
    alert("Please enter your mobile number.");
    theForm.volunteer_mobile.focus();
    return (false);
  }

    if (theForm.volunteer_email.value == "Required")
  {
    alert("Please enter your email address.");
    theForm.volunteer_email.focus();
    return (false);
  }

	if (theForm.volunteer_address.value == "Required")
  {
    alert("Please enter your address.");
    theForm.volunteer_address.focus();
    return (false);
  }
  if (theForm.volunteer_postcode.value == "Required")
  {
    alert("Please enter your postcode.");
    theForm.volunteer_postcode.focus();
    return (false);
  }
  if (theForm.volunteer_cv.value == "Required")
  {
    alert("Please supply a brief CV.");
    theForm.volunteer_cv.focus();
    return (false);
  }
  if (theForm.volunteer_datesAvailable.value == "Required")
  {
    alert("Please enter the dates you are available.");
    theForm.volunteer_datesAvailable.focus();
    return (false);
  }
  if (theForm.volunteer_referee.value == "Required")
  {
    alert("Please enter your referee.");
    theForm.volunteer_referee.focus();
    return (false);
  }
	if (theForm.volunteer_name.value == "")
  {
    alert("Please enter your name.");
    theForm.volunteer_name.focus();
    return (false);
  }
  if (theForm.volunteer_tel.value == "")
  {
    alert("Please enter your telephone number.");
    theForm.volunteer_tel.focus();
    return (false);
  }
  if (theForm.volunteer_mobile.value == "")
  {
    alert("Please enter your mobile number.");
    theForm.volunteer_mobile.focus();
    return (false);
  }

    if (theForm.volunteer_email.value == "")
  {
    alert("Please enter your email address.");
    theForm.volunteer_email.focus();
    return (false);
  }

	if (theForm.volunteer_address.value == "")
  {
    alert("Please enter your address.");
    theForm.volunteer_address.focus();
    return (false);
  }
  if (theForm.volunteer_postcode.value == "")
  {
    alert("Please enter your postcode.");
    theForm.volunteer_postcode.focus();
    return (false);
  }
  if (theForm.volunteer_cv.value == "")
  {
    alert("Please supply a brief CV.");
    theForm.volunteer_cv.focus();
    return (false);
  }
  if (theForm.volunteer_datesAvailable.value == "")
  {
    alert("Please enter the dates you are available.");
    theForm.volunteer_datesAvailable.focus();
    return (false);
  }
  if (theForm.volunteer_referee.value == "")
  {
    alert("Please enter your referee.");
    theForm.volunteer_referee.focus();
    return (false);
  }
	 return (true); 
}
  