// JavaScript Document

function myfocus()
{
	document.f1.cname.focus();
}

//**************************************************************************

function validation()
{

	if(document.f1.cname.value=="")//contact person
	{
	alert("Please enter your name")
	document.f1.cname.focus()
	return;
	}
	
	e=document.f1.cmail.value
	if ((e.indexOf("@",0)==-1)||(e.indexOf(".",0)==-1)||(e.indexOf(" ",0)!=-1))
	{
	alert("Enter correct e-mail address")
	document.f1.cmail.focus()
	document.f1.cmail.select()
	return;
	}
	if(document.f1.cmsg.value=="")//msg
	{
	alert("Please enter your massage")
	document.f1.cmsg.focus()
	document.f1.cmsg.select()
	return;
	}
	
}

//function mysubmit()
//{
//document.f1.submit();
//}