function SubmitForm()
	{ 
	  	mFlag = true;
		if (mFlag && !ValidateEmpty(document.Form1.txt_contact_for))
		{
			mFlag = false;
		}
		if (mFlag && !ValidateEmpty(document.Form1.txt_name))
		{
			mFlag = false;
		}
		if (mFlag && !ValidateEmpty(document.Form1.txt_company_name))
		{
			mFlag = false;
		}
		if ( mFlag && (document.Form1.txt_country.value=="Select Country") )
    	{
		alert("Select a Country");	
		document.Form1.txt_country.focus();
		mFlag = false;
	    }
		if (mFlag && document.Form1.txt_type[0].checked)
		{
			if (!IsEmailValid(document.Form1.txt_email.value))
			{
				alert("Please enter valid email address.");
				document.Form1.txt_email.focus();
				mFlag = false;
			}
		}
		else if (mFlag && document.Form1.txt_type[1].checked)
		{
			if (!ValidatePhone(document.Form1.txt_phone))
			{
				mFlag = false;
			}
		}
		if (mFlag && !ValidateEmpty(document.Form1.txt_message))
		{
			mFlag = false;
		}
		if (mFlag && !ValidateEmpty(document.Form1.txt_find))
		{
			mFlag = false;
		}
		
		if ((document.Form1.txt_find.value=="Others") && (document.Form1.recommended.value=="")  )
		{
			    alert("Please enter the How did you find us? field.");
				document.Form1.recommended.focus();
				mFlag = false;
		}
	 if(mFlag && !ValidateEmpty(document.Form1.captcha_code) )
	  {
		mFlag = false;
	  }
		
		return mFlag;
	}