<!--
function calc1x()
	{
	var x=0;	
	x=document.calc1.input.value;
	var y=0;
	if(document.calc1.type.value==1)
    	{
		if(x<=1000)
			y=50;
		if(x>1000 && x<=50000)
			y=x*0.04+10;
		if(x>50000 && x<=100000)
			y=x*0.03+510;                  
		if(x>100000 && x<=200000)
			y=x*0.02+1510;
		if(x>200000 && x<=500000)
			y=x*0.015+2510;
		if(x>500000 && x<=1000000)
			y=x*0.01+5010;
		if(x>1000000)
			y=x*0.005+10010;
		}
	if(document.calc1.type.value==2)
		{
		if(x<=1000)
			y=30;
		if(x>1000 && x<=100000)
         y=x*0.01+20;
		if(x>100000)
			y=x*0.05+520;
		}
if(document.calc1.type.value==3)
		{
		if(x<=10000)
			y=50;
		if(x>10000 && x<=500000)
         y=x*0.25;
		if(x>500000)
			y=x*0.1+2000;
		}
	document.calc1.output.value=y;
	}

function calc2x()
	{
	var x=0;	
	x=document.calc2.input.value;
	var y=0;
	if(document.calc2.type.value<3)
    	{
		if(x<=10000)
			y=1500;
		if(x>10000 && x<=100000)
			y=x*0.04+1100;
		if(x>100000 && x<=500000)
			y=x*0.03+2100;                  
		if(x>500000 && x<=1000000)
			y=x*0.025+4600;
		if(x>1000000 && x<=5000000)
			y=x*0.02+9600;
		if(x>5000000 && x<=10000000)
			y=x*0.015+34600;
		if(x>10000000)
			y=x*0.007+114600;
		}
	if(document.calc2.type.value==2)
		y+=500;
	if(document.calc2.type.value==3)
		y=3000;
	document.calc2.output.value=y;
	}
//版权所有 苏州法律网 www.szhlaw.com
//-->








