function valid(){
a = document.frm;
if(a.txtname.value==""){
alert("Please enter your Name");
a.txtname.style.background='#fcc9ee';
a.txtname.focus();
a.txtname.select();
return false;
}
if(a.txtmail.value==""){
alert("Please enter your Email");
a.txtmail.style.background='#fcc9ee';
a.txtname.style.background='white';
a.txtmail.focus();
a.txtmail.select();
return false;
}
else
{
	var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i
	var returnval=emailfilter.test(document.frm.txtmail.value)
	if (returnval==false){
		alert("Please enter a valid email address.")
		document.frm.txtmail.select()
		return false;
}
}
if(isNaN(a.txtphone.value) || a.txtphone.value==""){
alert("Please enter your Phone");
a.txtphone.style.background='#fcc9ee';
a.txtmail.style.background='white';
a.txtphone.focus();
a.txtphone.select();
return false;
}
if(a.txtcomments.value==""){
alert("Please enter your Comments");
a.txtcomments.style.background='#fcc9ee';
a.txtphone.style.background='white';
a.txtcomments.focus();
a.txtcomments.select();
return false;
}

/*if(a.txtcomments.value==""){
alert("Please enter your Comments");
a.txtcomments.focus();
a.txtcomments.select();
return false;
}*/
return;
}