/* Author: Stefan Dindyal

*/

function validateThis()
{
lForm = document.forms.Signup;
//email check
if (!checkEmail (lForm.email,false)) {return false;}
//age check
if ((lForm.year.value.toUpperCase()=='YEAR') || (lForm.month.value.toUpperCase()=='MONTH') || (lForm.day.value.toUpperCase()=='DAY')) {
	alert('Please enter your date of birth');
	lForm.month.focus();
	return false;
}
//country check
if (lForm.country.value==''){
	alert ("Country is required field. Please try again.");
	lForm.country.focus();
	return false;
}
return true;
}
