// JavaScript Document
function validate()
{
       if(document.forms["myform"].cname.value=="")
		{
			alert("Give your name for further communication ");
			return;
		}
	
	   else if(!document.forms["myform"].email.value.match(/^[A-Za-z0-9\._\-+]+@[A-Za-z0-9_\-+]+(\.[A-Za-z0-9_\-+]+)+$/))
		{
			alert("Give your e-mail address");
			return;
		}
    
	   else
	   {  document.myform.submit();
	     }
			 
	
	
}