function checkall2()
{

var a="\n"
	

if (document.main.text_First_Name_1.value=="")
	{
		a=a+"Your First Name not specified"+"\n";
	}
if (document.main.text_Last_Name_3.value=="")
	{
		a=a+"Your Last Name not specified"+"\n";
	}	
	
if (document.main.text_Email_11.value=="")
	{
		a=a+"Email not specified"+"\n";
	}  

if (document.main.text_Country_7.value=="")
	{
		a=a+"Country not specified"+"\n";
	}  


	
if (a!="\n")
	{
	    alert("Please fix these error in your form \n "+a);
		return false
	}

       set_action('send_email_form');
       document.main.submit();

}
