<!--
function checkformPer() 
{

	var Em            = document.form12.Email.value;
	var Full_name1     = document.form12.Full_name.value;
	var Mail_address1  = document.form12.Mail_address.value;
	var City1          = document.form12.City.value;
	var Country1      = document.form12.Country.value;
	var P_res1       = document.form12.P_res.value;
	
	if (Em=="") 
		{
			alert("\n Email Address Field is Blank Plz Fill it.");
			document.form12.Email.focus();
			return false;
		}
if(Em.indexOf('@', 0) == -1)
						{
							alert("\nIt seems that your email address is not valid.");
							document.form12.Email.focus();
							document.form12.Email.select();
							return false;
   						}
	if (Full_name1 == "") 
		{
			alert("\n Full Name Field is Blank Plz Fill it.")
			document.form12.Full_name.focus();
			return false;
		}
        
	if (Mail_address1 == "") 
		{
			alert("\n Mail Address Field is Blank Plz Fill it.")
			document.form12.Mail_address.focus();
			return false;
		}
	if (City1 == "") 
		{
			alert("\n City Field is Blank Plz Fill it.")
			document.form12.City.focus();
			return false;
		}
	if (Country1 == "") 
		{
			alert("\n Country Field is Blank Plz Fill it.")
			document.form12.Country.focus();
			return false;
		}
	if (P_res1 == "") 
		{
			alert("\n Phone (Res) Field is Blank Plz Fill it.")
			document.form12.P_res.focus();
			return false;
		}
return true;
}

function checkformEdu() 
{

	var Ins            = document.form12.Instit.value;
	var Deg            = document.form12.Degree_Level.value;
	
	if (Ins=="") 
		{
			alert("\n Institution Name Field is Blank Plz Fill it.")
			document.form12.Instit.focus();
			return false;
		}
	if (Deg == "") 
		{
			alert("\n Degree/Level Earned Field is Blank Plz Fill it.")
			document.form12.Degree_Level.focus();
			return false;
		}
        
	
return true;
}

function chkForm (){
	var cage = document.wasl.age;
	var cgender = document.wasl.gender;
	if(cage.value == "Age"){
		alert("You did't select the age! Please select it first.");
		cage.focus();
		return false; 
		}
	if(cgender.value == "Gender"){
		alert("You did't select the gender! Please select it first.");
		cage.focus();
	return false;
		}
return true;
		
}
// -->
