function validateContact()
{
	if (document.mailer_contact.fname.value == "" || (document.mailer_contact.fname.value.match(/([0-9]+)/gi)) )
	{
		alert("First Name: Your first name is required and must be alphabetic.");
		document.mailer_contact.fname.focus();
		return false;
	}
	else if (document.mailer_contact.lname.value == "" || (document.mailer_contact.lname.value.match(/([0-9]+)/gi)) )
	{
		alert("Last Name: Your last name is required and must be alphabetic.");
		document.mailer_contact.lname.focus();
		return false;
	}
	else if ( (document.mailer_contact.email.value == "") || (!document.mailer_contact.email.value.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi)) )
	{
		alert("E-Mail : Please be sure to enter a valid email address.\n(i.e. name@company.com)");
		document.mailer_contact.email.focus();
		return false;
	}
	if (document.mailer_contact.gametitle.value == "" )
	{
		alert("Please include the title or working title of your game.");
		document.mailer_contact.gametitle.focus();
		return false;
	}
	else if (document.mailer_contact.platform.value == "")
	{
		alert("Please describe the platform for your game (e.g. PC, console, mobile, web, etc.)");
		document.mailer_contact.platform.focus();
		return false;
	}	
	else if (document.mailer_contact.userfile.value == "")
	{
		alert("You need to select your proposal file for upload.");
		return false;
	}		
	else if (!document.mailer_contact.terms.checked)
	{
		alert("Please confirm that you've read and understand the Terms and Conditions.");
		return false;
	}		
	else if (document.mailer_contact.captcha_code.value == "")
	{
		alert("Please enter the four-digit security code in the box.");
		return false;
	}			
	else
	{
		//alert("Processing...Thank you for your message!");
		return true;
	}
  }