// Accomodation Validation

function checkForm(formName)
{
	if (formName.txtname.value=="")
	{
		alert("Please enter your name!");
		formName.txtname.focus();
		return false;
	}
		
	if (formName.txtaddress.value=="")
	{
		alert("Please enter your Email!");
		formName.txtaddress.focus();
		return false;
	}
	if (!formName.txtaddress.value.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/))
	{
		alert("Please enter a valid Email!");
		formName.txtaddress.focus();
		formName.txtaddress.value = "";
		return false;
	}
	
	if (formName.txtmsg.value=="")
	{
		alert("Please enter comments!");
		formName.txtname.focus();
		return false;
	}
	
	return;	
	
}


