
industry_m = new Array();
industry_num = new Array();

industry_m[0] = "请选择行业名称";
industry_num[0] = "0";

industry_m[1] = "互联网/电子商务";
industry_num[1] = "1";

industry_m[2] = "计算机(软件、硬件、系统集成)";
industry_num[2] = "2";

industry_m[3] = "电子技术";
industry_num[3] = "3";

industry_m[4] = "电信";
industry_num[4] = "4";

industry_m[5] = "邮政";
industry_num[5] = "5";

industry_m[6] = "电气/能源";
industry_num[6] = "6";

industry_m[7] = "金融(银行/风险基金)";
industry_num[7] = "7";

industry_m[8] = "保险业";
industry_num[8] = "8";

industry_m[9] = "批发/零售";
industry_num[9] = "9";

industry_m[10] = "贸易/进出口";
industry_num[10] = "10";

industry_m[11] = "咨询业";
industry_num[11] = "11";

industry_m[12] = "物业管理/商业中心";
industry_num[12] = "12";

industry_m[13] = "综合性工商企业";
industry_num[13] = "13";

industry_m[14] = "娱乐/休闲/运动";
industry_num[14] = "14";

industry_m[15] = "快速消费品(食品/饮料/化妆品等)";
industry_num[15] = "15";

industry_m[16] = "耐用消费品(服装/纺织/家具/家电/工艺品等";
industry_num[16] = "16";

industry_m[17] = "建筑/设计/装璜";
industry_num[17] = "17";

industry_m[18] = "旅游业";
industry_num[18] = "18";

industry_m[19] = "酒店/餐饮";
industry_num[19] = "19";

industry_m[20] = "生物/制药/保健/医药";
industry_num[20] = "20";

industry_m[21] = "交通/运输/物流/快递";
industry_num[21] = "21";

industry_m[22] = "办公设备/用品";
industry_num[22] = "22";

industry_m[23] = "机械/仪器/仪表";
industry_num[23] = "23";

industry_m[24] = "汽车制造与维护/配件";
industry_num[24] = "24";

industry_m[25] = "石油/化工/原材料";
industry_num[25] = "25";

industry_m[26] = "生产/加工/制造(工业自动化/设备/零部件)";
industry_num[26] = "26";

industry_m[27] = "环保";
industry_num[27] = "27";

industry_m[28] = "印刷/包装";
industry_num[28] = "28";

industry_m[29] = " 采掘业/冶炼";
industry_num[29] = "29";

industry_m[30] = "传媒/影视/文化/出版";
industry_num[30] = "30";

industry_m[31] = "房地产及中介服务";
industry_num[31] = "31";

industry_m[32] = "教育/培训";
industry_num[32] = "32";

industry_m[33] = "学术/科研/艺术";
industry_num[33] = "33";

industry_m[34] = "服务业";
industry_num[34] = "34";

industry_m[35] = "非盈利机构/政府机关/公共事业";
industry_num[35] = "35";

industry_m[36] = "协会/学会/社团";
industry_num[36] = "36";

industry_m[37] = "农业/渔业/林业";
industry_num[37] = "37";

industry_m[38] = "在校学生";
industry_num[38] = "38";

industry_m[39] = "其他行业";
industry_num[39] = "39";

function industry_default(main,defaultmain)
{
	with(main)
	{
		len = industry_m.length;
		for (var i=0;i<len;i++)
		{
			options[i] = new Option(industry_m[i],industry_num[i]);
			options[i].selected = industry_num[i]==defaultmain ? true : false;
		}
	}
}
//显示公司所属行业
function show_industry(x)
{
    with(document)
    {
		len = industry_m.length;
        for (var i=0; i<len; i++) 
	    if(industry_num[i]==x)
		{
            	write(""+industry_m[i]+"");
		}
    }
}