function checkAudition(){
	if (document.form1.name.value == '2007 auditions') {
		location.href = "adminauditions.asp";
		return (true);
	}
	
	if (document.form1.name.value == '2008 auditions') {
		location.href = "adminauditions_08.asp";
		return (true);
	}
  if (document.form1.name.value == "")
  {
    alert("You have not entered your Name.");
    document.form1.name.focus();
    return (false);
  }
  if (document.form1.birthdate.value == "")
  {
    alert("You have not entered your Birthdate.");
    document.form1.birthdate.focus();
    return (false);
  }
  if (document.form1.address.value == "")
  {
    alert("You have not entered your Address.");
    document.form1.address.focus();
    return (false);
  }
  if (document.form1.home_phone.value == "")
  {
    alert("You have not entered your Phone #.");
    document.form1.home_phone.focus();
    return (false);
  }
  return (true);
}

