// JavaScript Document
/*                                                                                                                                                      
Copyright (c) 2007, Global Web Art, All rights reserved.
*/ 

<!--
function Validation()
{
	if(document.frmContactUs.name.value=="")
		   {
		   alert("Please enter your Name!");
		   document.frmContactUs.name.focus();
		   return false;
		   }
	var name=document.frmContactUs.name.value;
	var illegalChars = /[\W_{0,1,2,3,4,6,7,8,9}]/;
	if((name=="")||(illegalChars.test(name)))
		{
			alert('Use valid Name only');
			document.frmContactUs.name.focus();
			document.frmContactUs.name.select();
			return false;
		}
		   
	if(document.frmContactUs.email.value=="")
			{
				alert("Email cannot be Blank!");
				document.frmContactUs.email.focus();
				return false;
			}
	var Pos1,Pos2;
	Pos1=document.frmContactUs.email.value.indexOf('@');
	Pos2=document.frmContactUs.email.value.indexOf('.',Pos1);
	if((Pos1<0) || (Pos2 <0) || ((Pos2 - Pos1) <= 1))
			{
				alert("Please Enter a Proper Email!");
				document.frmContactUs.email.focus();
				return false;
			}

	if(document.frmContactUs.phone.value=="")
			{
				alert("Phone cannot be Blank!");
				document.frmContactUs.email.focus();
				return false;
			}
	var phone=document.frmContactUs.phone.value;
	if((phone=="")||(isNaN(phone)))
		{
			alert('Use numbers only');
			document.frmContactUs.phone.focus();
			document.frmContactUs.phone.select();
			return false;
		}
					
	if(document.frmContactUs.comments.value=="")
		   {
		   alert("Please enter your comments!");
		   document.frmContactUs.comments.focus();
		   return false;
		   }
	
	else
		{
		return true;
		}
}
//-->
