//这里定义的数组,用来储存菜单内容
c=new array;
n=new array;
n[1010]="设备障碍"
n[1020]="客户建议"
n[1030]="其他"
n[1010010]="市话"
n[1010020]="寻呼"
n[1010030]="移动"
n[1010040]="数据"
n[1030010]="通信质量"
n[1030020]="服务质量"
n[1030030]="话费纠纷"
n[1030040]="电信连销店"
n[1030050]="公话代办"
c[1]=new array(1010010,1010020,1010030,1010040)
c[3]=new array(1030010,1030020,1030030,1030040,1030050)
c[0]=new array(1010,1020,1030)
function initmenu()
{
var i;
form1.c_type.length=c[0].length;
for(i=0;i<c[0].length;i++)
{
catid=c[0][i];
catname=n[catid];
form1.c_type.options[i]=new option(catname,catid);
}
}
function c_type_onchange()
{
var i;
if(c[form1.c_type.selectedindex+1]==null)
{
form1.c_type_2.length=0
form1.c_type_2.options[0]=new option("");
}
else
{
form1.c_type_2.length=c[form1.c_type.selectedindex+1].length;
for(i=0;i<c[form1.c_type.selectedindex+1].length;i++)
{
catid=c[form1.c_type.selectedindex+1][i];
catname=n[catid];
form1.c_type_2.options[i]=new option(catname,catid);
}
}
return true;
}
