// JavaScript Document
function validate()
{
       if(document.forms["myform"].cname.value=="")
		{
			alert("Give your name for further communication ");
			return;
		}
	
	   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;
		}
		if(document.forms["myform"].phone.value=="")
		{
			alert("Give your Phone No ");
			return;
		}
		if(document.forms["myform"].comments.value=="")
		{
			alert("Give your Comments ");
			return;
		}
    
	   else
	   {  document.myform.submit();
	   }
			 
	
	
}
function validate_follow()
{
       if(document.forms["followform"].cname.value=="")
		{
			alert("Give your name for further communication ");
			return;
		}
	
	   else if(!document.forms["followform"].email.value.match(/^[A-Za-z0-9\._\-+]+@[A-Za-z0-9_\-+]+(\.[A-Za-z0-9_\-+]+)+$/))
		{
			alert("Give your e-mail address");
			return;
		}
    	else if(document.forms["followform"].lname.value=="")
		{
			alert("Give your logo name for further communication ");
			return;
		}
	   else
	   {  document.followform.submit();
	   }
			 
	
	
}