	function checkData()
	{
		if(document.information.name_first.value=='')
		{
			window.alert("Please enter your first name.")
			return false;
		}
		else if (document.information.name_last.value=='')
		{
			window.alert("Please enter your last name.")
			return false;
		}
		else if (document.information.permanent_street.value=='')
		{
			window.alert("Please enter your address - Street.")
			return false;
		}
		else if (document.information.permanent_city.value=='')
		{
			window.alert("Please enter your address - city.")
			return false;
		}
		else if (document.information.province.value=='')
		{
			window.alert("Please enter your address - province.")
			return false;
		}
		else if (document.information.permanent_zip.value=='')
		{
			window.alert("Please enter your address - zip code.")
			return false;
		}
		else if (document.information.permanent_country.value=='')
		{
			window.alert("Please enter your address - country.")
			return false;
		}
		else if (document.information.email.value=='')
		{
			window.alert("Please enter your email address.")
			return false;
		}
		else if (document.information.Degree.value=='')
		{
			window.alert("Please enter Degree Program.")
			return false;
		}
	}

