// JavaScript Document
//Author: Primir
//Coded by: Harry

function Checkdata()
{
	//alert("I am here");
	if(document.contactform.Name.value < "4")
	{
		alert("Please enter your full name.");
		document.contactform.Name.focus()
	} 
	
	else if(document.contactform.Phone.value < 6)
	{
		alert("Please provide a correct phone number, including area code. e.i: (###)-###-####");
		document.contactform.Phone.focus()
	} 
	
	else if(document.contactform.Comments_Questions.value < 4)
	{
		alert("Please provide a comment or question before submit.");
		document.contactform.Comments_Questions.focus()
	} 	
	
	else 
	{
		submitForm();
	}
}

function submitForm()
{
	document.contactform.submit();