function checkform()
{
	if(document.formContact.name.value=="")
	{
		alert("Please Enter Your Full Name");
		document.formContact.name.value = '';
		document.formContact.name.focus();
		return false;
	}
	
	if(document.formContact.phone.value=="")
	{
		alert("Please Enter Your Phone No.");
		document.formContact.phone.value = '';
		document.formContact.phone.focus();
		return false;
	}
	if(document.formContact.email.value=="")
	{
		alert("Please Enter Your Contact Email");		
		document.formContact.email.focus();
		return false;
	}
	
	if(document.formContact.subject.value=="")
	{
		alert("Please Enter Subject");
		document.formContact.subject.value = '';
		document.formContact.subject.focus();
		return false;
	}
	if(document.formContact.comments.value=="")
	{
		alert("Please Type Your Comments");
		document.formContact.comments.value = '';
		document.formContact.comments.focus();
		return false;
	}
}

