function check()
{
if (document.verify.firstnames.value=="")
	{
	alert ('Would you mind putting on your firstname?');
	return false
	}
if (document.verify.emails.value=="")
	{
	alert ('We need your email in order for us to answer your inquiry! \n\n Don\'t worry, it will not be made known to other people.\n');
	return false
	}
}
