function CalResult(oDocument)
{
	var issame,thereason,count,result;
	if (oDocument.all.rbSame1.checked) 
	{
		issame=true;
		//document.FeiTool01.same22.value="内";
	}
	if (oDocument.all.rbSame2.checked) 
	{
		issame=false;
		//document.FeiTool01.same22.value="外";
	}
	if (oDocument.all.rbReason1.checked) {thereason=1;}
	if (oDocument.all.rbReason2.checked) {thereason=2;}
	if (oDocument.all.rbReason3.checked) {thereason=3;}
	count=parseInt(oDocument.all.edCount.value);	
	if (issame)
	{
		if ((thereason==1)|(thereason==2))
		{
			result=count*0.002;
			if (result<2) result=2;
		}
		else
		{
			result=count*0.008;
			if (result<3) result=3;
		}
		oDocument.all.lbResult.innerText="您在系统内申请办理异地托收，应收费用为 "+new Number(result).toFixed(2)+" 元";
	}
	else
	{
		result=count*0.008;
		if (result<5) result=5;
		oDocument.all.lbResult.innerText="您在系统外申请办理异地托收，应收费用为 "+new Number(result).toFixed(2)+" 元";
	}
}	

