function verifyForm(){
	var alertString = "";

	//Validate the Zip_Code textbox	
	if(document.getElementById("Zip_Code").value == ""){
		document.getElementById("Zip_Code").style.backgroundColor = "#F5751E";
		document.getElementById("Zip_Code").focus();
		alertString = "Please enter your school's zip code.\n" + alertString;
	} else
		document.getElementById("Zip_Code").style.backgroundColor = "white";
		
	//Validate the State textbox	
	if(document.getElementById("State").value == ""){
		document.getElementById("State").style.backgroundColor = "#F5751E";
		document.getElementById("State").focus();
		alertString = "Please enter your school's state.\n" + alertString;
	} else
		document.getElementById("State").style.backgroundColor = "white";
	
	//Validate the City textbox	
	if(document.getElementById("City").value == ""){
		document.getElementById("City").style.backgroundColor = "#F5751E";
		document.getElementById("City").focus();
		alertString = "Please enter your school's city.\n" + alertString;
	} else
		document.getElementById("City").style.backgroundColor = "white";
	
	//Validate the Street textbox	
	if(document.getElementById("Street").value == ""){
		document.getElementById("Street").style.backgroundColor = "#F5751E";
		document.getElementById("Street").focus();
		alertString = "Please enter your school's street.\n" + alertString;
	} else
		document.getElementById("Street").style.backgroundColor = "white";
		
	//Validate the Email textbox	
	if(document.getElementById("Email").value == ""){
		document.getElementById("Email").style.backgroundColor = "#F5751E";
		document.getElementById("Email").focus();
		alertString = "Please enter your email address.\n" + alertString;
	} else if(!((document.getElementById("Email").value.indexOf(".") > 2) && (document.getElementById("Email").value.indexOf("@") > 0))){
		document.getElementById("Email").style.backgroundColor = "#F5751E";
		document.getElementById("Email").focus();
		alertString = "Please enter a valid email address \n" + alertString
	} else
		document.getElementById("Email").style.backgroundColor = "white";
	
	//Validate the Organization textbox	
	if(document.getElementById("Organization").value == ""){
		document.getElementById("Organization").style.backgroundColor = "#F5751E";
		document.getElementById("Organization").focus();
		alertString = "Please enter your organization.\n" + alertString;
	} else
		document.getElementById("Organization").style.backgroundColor = "white";
	
	//Validate the OccupationTitle textbox
	if(document.getElementById("OccupationTitle").value == ""){
		document.getElementById("OccupationTitle").style.backgroundColor = "#F5751E";
		document.getElementById("OccupationTitle").focus();
		alertString = "Please fill out your occupation or title.\n" + alertString;
	} else
		document.getElementById("OccupationTitle").style.backgroundColor = "white";

	//Validate the Name textbox
	if(document.getElementById("Name").value == ""){
		document.getElementById("Name").style.backgroundColor = "#F5751E";
		document.getElementById("Name").focus();
		alertString = "Please enter your name.\n" + alertString;
	} else
		document.getElementById("Name").style.backgroundColor = "white";

	if(!document.getElementById("Attendance_June5").checked && !document.getElementById("Attendance_June6").checked && !document.getElementById("Attendance_Both").checked){
		document.getElementById("Attendance_Selection").style.border = "2px solid #F5751E";
		document.getElementById("Attendance_Both").focus();
		alertString = "Please select what days you plan on attending.\n" + alertString;
	} else
		document.getElementById("Attendance_Selection").style.border = "0px";
	
	//If there is a problem, alert the user, else submit the form
	if(alertString != ""){
		alert(alertString);
		return false;
	}
	else{
		return true;
	}
}

function verifyWorkshop(){
	var alertString = "";
	
	//Validate the Classroom_Teaching_02 options
	if(!(document.getElementById("Classroom_Teaching_02_01").checked || document.getElementById("Classroom_Teaching_02_02").checked || document.getElementById("Classroom_Teaching_02_03").checked || document.getElementById("Classroom_Teaching_02_04").checked || document.getElementById("Classroom_Teaching_02_05").checked)){
		document.getElementById("Classroom_Teaching_02_Selection").style.border = "2px solid #F5751E";
		alertString = "Please select a 1:00 p.m. Classroom Teaching workshop.\n" + alertString;
	} else
	{
		document.getElementById("Classroom_Teaching_02_Selection").style.border = "0px";
	}
	
	//Validate the Classroom_Teaching_01 options
	if(!(document.getElementById("Classroom_Teaching_01_01").checked || document.getElementById("Classroom_Teaching_01_02").checked || document.getElementById("Classroom_Teaching_01_03").checked || document.getElementById("Classroom_Teaching_01_04").checked || document.getElementById("Classroom_Teaching_01_05").checked || document.getElementById("Classroom_Teaching_01_06").checked)){
		document.getElementById("Classroom_Teaching_01_Selection").style.border = "2px solid #F5751E";
		alertString = "Please select a 10:30 a.m. Classroom Teaching workshop.\n" + alertString;
	} else
	{
		document.getElementById("Classroom_Teaching_01_Selection").style.border = "0px";
	}
	
	//Validate the Science_Content options	
	if(!(document.getElementById("Science_Content_01").checked || document.getElementById("Science_Content_02").checked || document.getElementById("Science_Content_03").checked || document.getElementById("Science_Content_04").checked || document.getElementById("Science_Content_05").checked)){
		document.getElementById("Science_Content_Selection").style.border = "2px solid #F5751E";
		alertString = "Please select a Science Content workshop.\n" + alertString;
	} else
	{
		document.getElementById("Science_Content_Selection").style.border = "0px";
	}
	
	//Validate the SendFrom textbox	
	if(document.getElementById("SendFrom").value == ""){
		document.getElementById("SendFrom").style.backgroundColor = "#F5751E";
		document.getElementById("SendFrom").focus();
		alertString = "Please enter your email address.\n" + alertString;
	} else if(!((document.getElementById("SendFrom").value.indexOf(".") > 2) && (document.getElementById("SendFrom").value.indexOf("@") > 0))){
		document.getElementById("SendFrom").style.backgroundColor = "#F5751E";
		document.getElementById("SendFrom").focus();
		alertString = "Please enter a valid email address \n" + alertString
	} else
		document.getElementById("SendFrom").style.backgroundColor = "white";
	
	//Validate the Name textbox
	if(document.getElementById("Name").value == ""){
		document.getElementById("Name").style.backgroundColor = "#F5751E";
		document.getElementById("Name").focus();
		alertString = "Please enter your first name.\n" + alertString;
	} else
		document.getElementById("Name").style.backgroundColor = "white";
	
	//If there is a problem, alert the user, else submit the form
	if(alertString != ""){
		alert(alertString);
		return false;
	}
	else{
		return true;
	}
}