/* Author: 

*/

function validateThis() {

var lForm = document.forms.fugeesForm;

if(!checkEmail(lForm.email, false)) {return false;}

if(!checkDate(lForm.year, lForm.month, lForm.day, "Birth Date", false)) {return false;}

if(lForm.country.value==''){
	alert ("Country is required field. Please try again.");
	lForm.country.focus();
	return false;
}

return true;

}
