

function index(str1,str2)

{//alert(str1+','+str2)
switch(str1)
{
case 0:
window.location.href='index.htm';
break;


case 1:
window.location.href='cp.htm';
break;

case 2:
window.location.href='fw.htm';
break;


case 3:
window.location.href='hz.htm';
break;

case 4:
window.location.href='al.htm';
break;


case 5:
window.location.href='wt.htm';
break;

case 6:
window.location.href='gy.htm';
break;

case 7:
window.location.href='lx.htm';
break;


default:
window.location.href='index.asp';
break;
}
}
