function check()
{

if (document.verify.firstnames.value=="")
	{
	alert ('Please fill up the box provided for your first name!');
	return false
	}	

if (document.verify.lastnames.value=="")
	{
	alert ('Please fill up the box provided for your last name!');
	return false
	}
	
if (document.verify.emails.value=="")
	{
	alert ('Please fill up the box provided for your email!');
	return false
	}

	
return true
}
