function checkData(){
var problem = "";

if (document.form.First_Name.value.length <= 0) {
	problem = problem + "First Name\n";
}
if (document.form.Last_Name.value.length <= 0) {
	problem = problem + "Last Name\n";
}
if (document.form.Address.value.length <= 0) {
	problem = problem + "Street Address\n";
}
if (document.form.Town.value.length <= 0) {
	problem = problem + "Town/City\n";
}
if (document.form.State.value.length <= 0) {
	problem = problem + "State\n";
}
if (document.form.Zip.value.length <= 0) {
	problem = problem + "Zip Code\n";
}
if (document.form.Phone.value.length <= 0) {
	problem = problem + "Phone Number\n";
}
if (document.form.usrEmail.value.length <= 0) {
	problem = problem + "E-mail address\n";
} else {
// check for proper e-mail address
 var theEmail = document.form.usrEmail.value;
 var atLoc = theEmail.indexOf("@",1);
 var dotLoc = theEmail.indexOf(".",atLoc+2);
 var len = document.form.usrEmail.value.length;
 // alert ("atLoc="+atLoc+"\ndotLoc="+dotLoc);
 if (atLoc <= 0 || dotLoc <= 0 || len <= dotLoc+2) {
 	problem = problem + "Check the E-mail address you have entered\n";
 }
}
if (document.form.Instrument.value.length <= 0) {
	problem = problem + "Instrument(s) on which you want to audition\n";
}
// Check Accompanist
var accompanistChecked = 99;
for (x = 0; x < 3 ; x++) {
	if  (document.form.Accompanist[x].check || document.form.Accompanist[x].checked){
		accompanistChecked = x;
	}
}
if (accompanistChecked == 99) {
	problem = problem + "\nTell us if you need an Accompanist\n";
}


// Check Entry Class
var FallChecked = 99;
for (x = 0; x < 3 ; x++) {
	if  (document.form.FallClass[x].check || document.form.FallClass[x].checked){
		FallChecked = x;
	}
}
if (FallChecked == 99) {
	problem = problem + "\nTell us which class you will be entering in the Fall\n";
	}

// Check Transfer
if (FallChecked == 1){
	var TransferClassChecked = 99;
	for (x = 0; x < 5 ; x++) {
		if  (document.form.TransferClass[x].check || document.form.TransferClass[x].checked){
			TransferClassChecked = x;
		}
	}
	if (TransferClassChecked == 99) {
		problem = problem +"\nSeeing you are a Transfer student, tell us which class you will be entering in the Fall\n";
	}
// And Transfer School
	if (document.form.TransferSchool.value.length <= 0) {
		problem = problem + "\n Seeing you are a Transfer student, please include the name of the school from which you are transferring\n";
	}
}

// Check Major
var majorChecked = 99;
for (x = 0; x < 5 ; x++) {
	if  (document.form.Major[x].check || document.form.Major[x].checked){
		majorChecked = x;
	}
}
if (majorChecked == 99) {
	problem = problem + "\nTell us your intended Major\n";
}

// And check Other Major
if (majorChecked == 4 && document.form.MajorOther.value.length <= 0) {
	problem = problem + "\nSeeing you selected Other as your major, please specify what it is\n";
	}


// Check Audition Date
 var auditionChecked = 99;
// alert (numAuditions);
for (x = 0; x < numAuditions ; x++) {
 	if  (document.form.AuditionDate[x].check || document.form.AuditionDate[x].checked){
// 	if  (document.form.AuditionDate.check || document.form.AuditionDate.checked)
		auditionChecked = x;
//		auditionChecked = 1;
	}
 }
 if (auditionChecked == 99) {
	problem = problem + "\nPlease choose an Audition date\n";
	}

// Check Packet
var packetChecked = 99;
for (x = 0; x < 3 ; x++) {
	if  (document.form.Packet[x].check || document.form.Packet[x].checked){
		packetChecked = x;
	}
}
if (packetChecked == 99) {
	problem = problem + "\nTell us if you would like an information packet about the Department of Music\n";
	}

// For debugging - alert("Problem="+problem);

if (problem == "") {
	return true;
	}
else {
	alert("Please complete the following information:\n" + problem);
	return false;
	}
}