function testJs(){
var form = document.forms[0];
if(form.TDocType.value=="公司请假申请"&&form.TNodeName.value=="起草"){
var temp = document.getElementsByName("Tchuguo");
intHot="";
for(var i=0;i<temp.length;i++)
{
if(temp[i].checked)
intHot = temp[i].value;
}
if(intHot=="是"&&form.guojia.value==""){
alert("请填写拟到国家或地区!");
return false;
}
}
}