			<!--
			 function uscanada(fds){

					if (window.document.forms[0].state.selectedIndex > 57
						) {
							window.document.forms[0].country.selectedIndex  = 2;
					} else if (window.document.forms[0].state.selectedIndex == 0) {
							window.document.forms[0].country.selectedIndex  = 0;
					} else {
							window.document.forms[0].country.selectedIndex  = 1;
					}
			}


			function int_popup() {
				if (document.forms[0].country.selectedIndex > 2)
				{

					var alertstring = "Keiser College welcomes diversity among its student population, ";
					alertstring += "yet recognizes the special needs presented by international students. ";
					alertstring += "Students from countries other than the U.S. and Canada ";
					alertstring += "should contact Keiser College directly at admissions@keisercollege.edu.\n\n";
					alertstring += "You will now be redirected to our Search Help page. \n\n";
					alertstring += "If you feel you received this message in error, please hit the back button  ";
					alertstring += "when you arrive at the Search Help page.";

					alert(alertstring);
					document.location="http://elearners.com/search/search_help.asp?help=int";
				}
			}

			function FrontPage_Form1_Validator(theForm)
			{

			   var why="";
				if (document.forms[0].country.selectedIndex > 2)
				{

					var alertstring = "Keiser College welcomes diversity among its student population, ";
					alertstring += "yet recognizes the special needs presented by international students. ";
					alertstring += "Students from countries other than the U.S. and Canada ";
					alertstring += "should contact Keiser College directly at admissions@keisercollege.edu.";
					alert(alertstring);
					return false;
				}

			  if (theForm.age.selectedIndex <= 0)
			  {
			    alert("Please select at least one of the \"age\" options.");
			    theForm.age.focus();
			    return (false);
			  }

			  if (theForm.firstname.value == "")
			  {
			    alert("Please enter a value for the \"firstname\" field.");
			    theForm.firstname.focus();
			    return (false);
			  }

			  if (theForm.firstname.value.length < 2)
			  {
			    alert("Please enter at least 2 characters in the \"firstname\" field.");
			    theForm.firstname.focus();
			    return (false);
			  }

			  if (theForm.firstname.value.length > 50)
			  {
			    alert("Please enter at most 50 characters in the \"firstname\" field.");
			    theForm.firstname.focus();
			    return (false);
			  }

			  if (theForm.lastname.value == "")
			  {
			    alert("Please enter a value for the \"lastname\" field.");
			    theForm.lastname.focus();
			    return (false);
			  }

			  if (theForm.lastname.value.length < 2)
			  {
			    alert("Please enter at least 2 characters in the \"lastname\" field.");
			    theForm.lastname.focus();
			    return (false);
			  }

			  if (theForm.lastname.value.length > 50)
			  {
			    alert("Please enter at most 50 characters in the \"lastname\" field.");
			    theForm.lastname.focus();
			    return (false);
			  }

			  if (theForm.email.value == "")
			  {
			    alert("Please enter a value for the \"email\" field.");
			    theForm.email.focus();
			    return (false);
			  }

			  if (theForm.email.value.length < 5)
			  {
			    alert("Please enter at least 5 characters in the \"email\" field.");
			    theForm.email.focus();
			    return (false);
			  }

			  if (theForm.email.value.length > 50)
			  {
			    alert("Please enter at most 50 characters in the \"email\" field.");
			    theForm.email.focus();
			    return (false);
			  }

				why = checkEmail(theForm.email.value);
				if (why != "") {
				       alert(why);
				       theForm.email.focus();
				       return false;
			    }

			  if (theForm.address.value == "")
			  {
			    alert("Please enter a value for the \"address\" field.");
			    theForm.address.focus();
			    return (false);
			  }

			  if (theForm.address.value.length < 5)
			  {
			    alert("Please enter at least 5 characters in the \"address\" field.");
			    theForm.address.focus();
			    return (false);
			  }

			  if (theForm.address.value.length > 100)
			  {
			    alert("Please enter at most 100 characters in the \"address\" field.");
			    theForm.address.focus();
			    return (false);
			  }

			  if (theForm.city.value == "")
			  {
			    alert("Please enter a value for the \"city\" field.");
			    theForm.city.focus();
			    return (false);
			  }

			  if (theForm.city.value.length < 3)
			  {
			    alert("Please enter at least 3 characters in the \"city\" field.");
			    theForm.city.focus();
			    return (false);
			  }

			  if (theForm.city.value.length > 50)
			  {
			    alert("Please enter at most 50 characters in the \"city\" field.");
			    theForm.city.focus();
			    return (false);
			  }

			  if (theForm.state.selectedIndex < 0)
			  {
			    alert("Please select one of the \"state\" options.");
			    theForm.state.focus();
			    return (false);
			  }

			  if (theForm.state.selectedIndex == 0)
			  {
			    alert("The first \"state\" option is not a valid selection.  Please choose one of the other options.");
			    theForm.state.focus();
			    return (false);
			  }

			  if (theForm.country.selectedIndex < 0)
			  {
			    alert("Please select one of the \"country\" options.");
			    theForm.country.focus();
			    return (false);
			  }

			  if (theForm.country.selectedIndex == 0)
			  {
			    alert("The first \"country\" option is not a valid selection.  Please choose one of the other options.");
			    theForm.country.focus();
			    return (false);
			  }

			  if (theForm.zip.value == "")
			  {
			    alert("Please enter a value for the \"zip\" field.");
			    theForm.zip.focus();
			    return (false);
			  }

			  if (theForm.zip.value.length < 5)
			  {
			    alert("Please enter at least 5 characters in the \"zip\" field.");
			    theForm.zip.focus();
			    return (false);
			  }

			  if (theForm.zip.value.length > 12)
			  {
			    alert("Please enter at most 12 characters in the \"zip\" field.");
			    theForm.zip.focus();
			    return (false);
			  }

			  if (theForm.country.selectedIndex  == 1) {

					why = checkZipUS(theForm.zip.value);
					if (why != "") {
						   alert(why);
						   theForm.zip.focus();
						   return false;
					}

			   }

			  if (theForm.country.selectedIndex  == 2) {

					why = checkZipCanada(theForm.zip.value);
					if (why != "") {
						   alert(why);
						   theForm.zip.focus();
						   return false;
					}

			   }

				theForm.evephone.value=theForm.evephone.value.replace(/[^0-9]/g,"");
				if (theForm.evephone.value == "")
				{
					alert("Please enter a value for the \"Evening Phone\" field.");
					theForm.evephone.focus();
					return (false);
				}

				if (theForm.evephone.value.length < 10)
				{
					alert("Please enter at least 10 characters in the \"Evening Phone\" field.");
					theForm.evephone.focus();
					return (false);
				}

				why = checkPhoneNA(theForm.evephone.value);
				if (why != "") {
						 alert(why);
						 theForm.evephone.focus();
						 return false;
				}

				if ( isBadPhoneNumber(theForm.evephone.value) ) {
					alert("Please enter a valid value in the \"Evening Phone\" field.");
					theForm.evephone.focus();
					return (false);
				}

				theForm.dayphone.value=theForm.dayphone.value.replace(/[^0-9]/g,"");
				if (theForm.dayphone.value == "")
				{
					alert("Please enter a value for the \"Day Phone\" field.");
					theForm.dayphone.focus();
					return (false);
				}

				if (theForm.dayphone.value.length < 10)
				{
					alert("Please enter at least 10 characters in the \"Day Phone\" field.");
					theForm.dayphone.focus();
					return (false);
				}

				why = checkPhoneNA(theForm.dayphone.value);
				if (why != "") {
						 alert(why);
						 theForm.dayphone.focus();
						 return false;
				}

				if ( isBadPhoneNumber(theForm.dayphone.value) ) {
					alert("Please enter a valid value in the \"Day Phone\" field.");
					theForm.dayphone.focus();
					return (false);
				}

			  if (theForm.enroll_timeframe.selectedIndex <= 0)
			  {
			    alert("Please select one of the \"When would you like to start classes\" options.");
			    theForm.enroll_timeframe.focus();
			    return (false);
			  }

			  if (theForm.educationlevel.selectedIndex <= 0)
			  {
			    alert("Please select one of the \"educationlevel\" options.");
			    theForm.educationlevel.focus();
			    return (false);
			  }

			  if (theForm.gradyear.selectedIndex <= 0)
			  {
			    alert("Please select one of the \"High School/GED Graduation Year\" options.");
			    theForm.gradyear.focus();
			    return (false);
			  }

			  if (theForm.interests.selectedIndex <= 0)
			  {
			    alert("Please select at least one of the \"interests\" options.");
			    theForm.interests.focus();
			    return (false);
			  }

				if (theForm.message.value.length>250){
				  alert("Please limit your comments to 250 characters or less");
				  theForm.message.focus();
				  return false;
				}

				if ( !checkAge() ) {
					return false;
				}

			  return (true);
			}

			function checkAge(){
					if ( document.forms[0].age.selectedIndex==1 ) {
						var alertstring = "In order to apply for Keiser College programs,\n";
						alertstring += "you must be at least 24 years of age.\n";
						alertstring += "Please click \"OK\" and you will be redirected to find more programs. \n\n";
						alertstring += "If you feel you have reached this message in error, please click \"Cancel\" to \n"
						alertstring += "return to the form.\n";

						alert(alertstring);
						return false;
					}
					return true;
			}


			function popUp(url) {
				sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
				self.name = "mainWin";
			}
			-->
