function checkFeedBackForm()
{
	if(this.FeedBackForm.country.value=="")
	{
		alert("\请输入您计划申请的国家!");
		return false;
	}
	    if(this.FeedBackForm.name.value=="")
	{
		alert("\请输入您的姓名!");
		this.FeedBackForm.name.focus();
		return false;
	}
		if(this.FeedBackForm.sex.value=="")
	{
		alert("\请输入您的姓别!");
		this.FeedBackForm.sex.focus();
		return false;
	}
		if(this.FeedBackForm.hy.value=="")
	{
		alert("\请输入您的婚姻状况!");
		this.FeedBackForm.hy.focus();
		return false;
	}
			
		if(this.FeedBackForm.age.value=="")
	{
		alert("\请输入您的年龄!");
		this.FeedBackForm.age.focus();
		return false;
	}
		
		if(this.FeedBackForm.city.value=="")
	{
		alert("\请输入您所在省份!");
		this.FeedBackForm.city.focus();
		return false;
	}
		if(this.FeedBackForm.edu.value=="")
	{
		alert("\请输入您的教育程度!");
		this.FeedBackForm.edu.focus();
		return false;
	}
		if(this.FeedBackForm.tel.value=="")
	{
		alert("\请填写您的联系电话（手机）!");
		this.FeedBackForm.tel.focus();
		return false;
	}
	
		if((this.FeedBackForm.email.value=="")||(this.FeedBackForm.email.value.indexOf('@',0)==-1)||(this.FeedBackForm.email.value.indexOf('.',0)==-1)||(this.FeedBackForm.email.value.length<6)) 
	{
		alert("请您输入合法的E-mail地址!");
		this.FeedBackForm.email.focus();
		return false;
	}
	
		if(this.FeedBackForm.grzzc.value=="")
	{
		alert("\请输入您的个人总资产!");
		this.FeedBackForm.grzzc.focus();
		return false;
	}		
		
		
		
		/*if(this.FeedBackForm.reason.value=="")
	{
		alert("\请输入您移民的原因!");
		this.FeedBackForm.reason.focus();
		return false;
	}		
	
	if(this.FeedBackForm.ours.value=="")
	{
		alert("\请输入您是通过何种途径知道我们？");
		this.FeedBackForm.ours.focus();
		return false;
	}*/
}