function valid_info_check(){
	if(document.project_info.name.value==""){
	alert("Please enter the name ...!");
	document.project_info.name.focus();
	return false;
	}
	if(document.project_info.phone.value==""){
	alert("Please enter the phone ...!");
	document.project_info.phone.focus();
	return false;
	}
	if(document.project_info.email_id.value!=""){
		if(document.project_info.email_id.value.indexOf("@")==-1 ||
			document.project_info.email_id.value.indexOf(".")==-1 ||
			document.project_info.email_id.value.indexOf("")==-1 ||
			document.project_info.email_id.value.length < 6)
		{
			alert("Sorry, the e-Mail Address is not valid.");
			document.project_info.email_id.focus();
			return false;		
		}
	}
	else
	{
		alert("Please enter e-Mail Address.");
		document.project_info.email_id.focus();
		return false;	
	}
	
   
	if(document.project_info.message.value==""){
	alert("Please enter the Message ...!");
	document.project_info.message.focus();
	return false;
	}
}

function valid_info_check_1(){
	if(document.project_info_1.name.value==""){
	alert("Please enter the name ...!");
	document.project_info_1.name.focus();
	return false;
	}
	if(document.project_info_1.phone.value==""){
	alert("Please enter the phone ...!");
	document.project_info_1.phone.focus();
	return false;
	}
	if(document.project_info_1.email_id.value!=""){
		if(document.project_info_1.email_id.value.indexOf("@")==-1 ||
			document.project_info_1.email_id.value.indexOf(".")==-1 ||
			document.project_info_1.email_id.value.indexOf("")==-1 ||
			document.project_info_1.email_id.value.length < 6)
		{
			alert("Sorry, the e-Mail Address is not valid.");
			document.project_info_1.email_id.focus();
			return false;		
		}
	}
	else
	{
		alert("Please enter e-Mail Address.");
		document.project_info_1.email_id.focus();
		return false;	
	}
	
   
	if(document.project_info_1.message.value==""){
	alert("Please enter the Message ...!");
	document.project_info_1.message.focus();
	return false;
	}
}