

var allArray = new Array();
var type1Array = new Array();
var type2Array = new Array();
var type3Array = new Array();
var type4Array = new Array();

function typeObj(id,name,otherName,type)
{
	this.id = id;
	this.name = name;
	this.otherName = otherName;
	this.type = type;
}

function creOption(id, name)
{
	myOpt = document.createElement("OPTION");
	myOpt.value = id;
	myOpt.text = name;
	return myOpt;
}

//加载类别1-------------------------------------------------------------
function type1Load(type1ID)
{
	form1.type1.options.add(creOption("0", "请选择"));
	for(var i=1; i<type1Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type1Array[i].id;
		myOpt.text = type1Array[i].name;
		form1.type1.options.add(myOpt);
		if(type1Array[i].id == type1ID) myOpt.selected = true;
	}
}
//加载类别2-------------------------------------------------------------
function type2Load(type2ID)
{
	form1.type2.options.add(creOption("0", "请选择"));
	for(var i=0; i<type2Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type2Array[i].id;
		myOpt.text = type2Array[i].name;
		form1.type2.options.add(myOpt);
		if(type2Array[i].id == type2ID) myOpt.selected = true;
	}
}
function type2Load1(type2ID, type1ID)
{
	form1.type2.options.add(creOption("0", "请选择"));
	for(var i=0; i<type2Array.length; i++)
	{
		if(type2Array[i].type==type1ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type2Array[i].id;
			myOpt.text = type2Array[i].name;
			form1.type2.options.add(myOpt);
			if(type2Array[i].id == type2ID) myOpt.selected = true;
		}
	}
}
function type2Load2(type1ID, type2ID)
{
	form1.type1.options.add(creOption("0", "请选择"));
	for(var i=1; i<type1Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type1Array[i].id;
		myOpt.text = type1Array[i].name;
		form1.type1.options.add(myOpt);
		if(type1Array[i].id == type1ID) myOpt.selected = true;
	}
	form1.type2.options.add(creOption("0", "请选择"));
	for(var i=0; i<type2Array.length; i++)
	{
		if(type2Array[i].type==type1ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type2Array[i].id;
			myOpt.text = type2Array[i].name;
			form1.type2.options.add(myOpt);
			if(type2Array[i].id == type2ID) myOpt.selected = true;
		}
	}
}
//加载类别3-------------------------------------------------------------
function type3Load(type3ID)
{
	form1.type3.options.add(creOption("0", "请选择"));
	for(var i=0; i<type3Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type3Array[i].id;
		myOpt.text = type3Array[i].name;
		form1.type3.options.add(myOpt);
		if(type3Array[i].id == type3ID) myOpt.selected = true;
	}
}
function type3Load2(type3ID, type2ID)
{
	form1.type3.options.add(creOption("0", "请选择"));
	for(var i=0; i<type3Array.length; i++)
	{
		if(type3Array[i].type==type2ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type3Array[i].id;
			myOpt.text = type3Array[i].name;
			form1.type3.options.add(myOpt);
			if(type3Array[i].id == type3ID) myOpt.selected = true;
		}
	}
}
function type3Load3(type1ID, type2ID, type3ID)
{
	form1.type1.options.add(creOption("0", "请选择"));
	for(var i=1; i<type1Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type1Array[i].id;
		myOpt.text = type1Array[i].name;
		form1.type1.options.add(myOpt);
		if(type1Array[i].id == type1ID) myOpt.selected = true;
	}
	form1.type2.options.add(creOption("0", "请选择"));
	for(var i=0; i<type2Array.length; i++)
	{
		if(type2Array[i].type==type1ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type2Array[i].id;
			myOpt.text = type2Array[i].name;
			form1.type2.options.add(myOpt);
			if(type2Array[i].id == type2ID) myOpt.selected = true;
		}
	}
	form1.type3.options.add(creOption("0", "请选择"));
	for(var i=0; i<type3Array.length; i++)
	{
		if(type3Array[i].type==type2ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type3Array[i].id;
			myOpt.text = type3Array[i].name;
			form1.type3.options.add(myOpt);
			if(type3Array[i].id == type3ID) myOpt.selected = true;
		}
	}
}
//加载类别4-------------------------------------------------------------
function type4Load(type4ID)
{
	form1.type4.options.add(creOption("0", "请选择"));
	for(var i=0; i<type4Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type4Array[i].id;
		myOpt.text = type4Array[i].name;
		form1.type4.options.add(myOpt);
		if(type4Array[i].id == type4ID) myOpt.selected = true;
	}
}
function type4Load2(type4ID, type3ID)
{
	form1.type4.options.add(creOption("0", "请选择"));
	for(var i=0; i<type4Array.length; i++)
	{
		if(type4Array[i].type==type3ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type4Array[i].id;
			myOpt.text = type4Array[i].name;
			form1.type4.options.add(myOpt);
			if(type4Array[i].id == type4ID) myOpt.selected = true;
		}
	}
}


function type4LoadSet2(type1ID, type2ID, type3ID, type4ID)
{
	form1.type3.options.add(creOption("0", "请选择"));
	for(var i=0; i<type3Array.length; i++)
	{
		if(type3Array[i].type==type2ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type3Array[i].id;
			myOpt.text = type3Array[i].name;
			form1.type3.options.add(myOpt);
			if(type3Array[i].id == type3ID) myOpt.selected = true;
		}
	}
	form1.type4.options.add(creOption("0", "请选择"));
	for(var i=0; i<type4Array.length; i++)
	{
		if(type4Array[i].type==type3ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type4Array[i].id;
			myOpt.text = type4Array[i].name;
			form1.type4.options.add(myOpt);
			if(type4Array[i].id == type4ID) myOpt.selected = true;
		}
	}
}


function type4LoadSet3(type1ID, type2ID, type3ID, type4ID)
{
	form1.type2.options.add(creOption("0", "请选择"));
	for(var i=0; i<type2Array.length; i++)
	{
		if(type2Array[i].type==type1ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type2Array[i].id;
			myOpt.text = type2Array[i].name;
			form1.type2.options.add(myOpt);
			if(type2Array[i].id == type2ID) myOpt.selected = true;
		}
	}
	form1.type3.options.add(creOption("0", "请选择"));
	for(var i=0; i<type3Array.length; i++)
	{
		if(type3Array[i].type==type2ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type3Array[i].id;
			myOpt.text = type3Array[i].name;
			form1.type3.options.add(myOpt);
			if(type3Array[i].id == type3ID) myOpt.selected = true;
		}
	}
	form1.type4.options.add(creOption("0", "请选择"));
	for(var i=0; i<type4Array.length; i++)
	{
		if(type4Array[i].type==type3ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type4Array[i].id;
			myOpt.text = type4Array[i].name;
			form1.type4.options.add(myOpt);
			if(type4Array[i].id == type4ID) myOpt.selected = true;
		}
	}
}


function type4LoadSet4(type1ID, type2ID, type3ID, type4ID)
{
	form1.type1.options.add(creOption("0", "请选择"));
	for(var i=1; i<type1Array.length; i++)
	{
		myOpt = document.createElement("OPTION");
		myOpt.value = type1Array[i].id;
		myOpt.text = type1Array[i].name;
		form1.type1.options.add(myOpt);
		if(type1Array[i].id == type1ID) myOpt.selected = true;
	}
	form1.type2.options.add(creOption("0", "请选择"));
	for(var i=0; i<type2Array.length; i++)
	{
		if(type2Array[i].type==type1ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type2Array[i].id;
			myOpt.text = type2Array[i].name;
			form1.type2.options.add(myOpt);
			if(type2Array[i].id == type2ID) myOpt.selected = true;
		}
	}
	form1.type3.options.add(creOption("0", "请选择"));
	for(var i=0; i<type3Array.length; i++)
	{
		if(type3Array[i].type==type2ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type3Array[i].id;
			myOpt.text = type3Array[i].name;
			form1.type3.options.add(myOpt);
			if(type3Array[i].id == type3ID) myOpt.selected = true;
		}
	}
	form1.type4.options.add(creOption("0", "请选择"));
	for(var i=0; i<type4Array.length; i++)
	{
		if(type4Array[i].type==type3ID)
		{
			myOpt = document.createElement("OPTION");
			myOpt.value = type4Array[i].id;
			myOpt.text = type4Array[i].name;
			form1.type4.options.add(myOpt);
			if(type4Array[i].id == type4ID) myOpt.selected = true;
		}
	}
}

//类别1选择-------------------------------------------------------------
function type1Change()
{
	form1.type2.length=0;
	var type1ID=(document.form1.type1.options[document.form1.type1.selectedIndex].value);
	type2Load1(0, type1ID);
}

//类别2选择-------------------------------------------------------------
function type2Change()
{
	form1.type3.length=0;
	var type2ID=(document.form1.type2.options[document.form1.type2.selectedIndex].value);
	type3Load2(0, type2ID);
}

//类别3选择-------------------------------------------------------------
function type3Change()
{
	form1.type4.length=0;
	var type3ID=(document.form1.type3.options[document.form1.type3.selectedIndex].value);
	type4Load2(0, type3ID);
}

//多项添加============================================================================================================
function appTypeEven()
{
	for(var i=0; i<document.form1.type3.length; i++)
	{
		if(document.form1.type3.options[i].selected)
		{
			form1.typeOK.options.add(creOption(document.form1.type3.options[i].value, document.form1.type3.options[i].text));
		}
	}
}

function delTypeEven()
{
	document.form1.typeOK.options[document.form1.typeOK.selectedIndex] = null;
}

function okTypeEven()
{
	var sel = "";
	var type2s = "";
	for(var i=0; i<document.form1.typeOK.length; i++)
	{
		sel = sel + document.form1.typeOK.options[i].value + ",";
		for(var j=0; j<type3Array.length; j++)
		{
			if(type3Array[j].id == document.form1.typeOK.options[i].value)
			{
				type2s = type2s + type3Array[j].type + ",";
			}
		}
	}
	document.form1.okValue.value = sel;
	document.form1.type2Value.value = type2s;
}


function getattPath(myInput)
{
	var myOtherName = "";
	var attributePathObj = document.getElementById("attributePathTB");
	var keywordOtherNameObj = document.getElementById("attributeOtherNameTB");
	for(var i=0; i<type2Array.length; i++)
	{
		if(type2Array[i].id == myInput.value)
		{
			myOtherName = type2Array[i].otherName;
		}
	}
	attributePathObj.value = "/" + myOtherName +  "/"  + keywordOtherNameObj.value + "/";
}



//==========================================================================================================================
//-------------------------------------------------------------------------------------

type1Array[0] = new typeObj(0,'请选择','-',0);
type1Array[1] = new typeObj(1,'产品总类','',0);
type2Array[0] = new typeObj(0,'请选择','-',0);
type2Array[1] = new typeObj(1,'金属切削机床','Metal-cutting-machine',1);
type2Array[2] = new typeObj(2,'锻压机械','Metal-forming-machine',1);
type2Array[3] = new typeObj(3,'特种加工设备','Special-cutting-machine',1);
type2Array[4] = new typeObj(4,'刀具','Tool',1);
type2Array[5] = new typeObj(5,'三坐标测量机及量具量仪','Coordinate-measuping',1);
type2Array[6] = new typeObj(6,'数控系统、功能部件','Numerical-Functiont',1);
type2Array[7] = new typeObj(7,'机床元部件、附件','Machine-tool-parts-accessories',1);
type2Array[8] = new typeObj(8,'其他','other-machine',1);
type2Array[9] = new typeObj(9,'机床电器','wiring-machine',1);
type3Array[0] = new typeObj(0,'请选择','-',0);
type3Array[1] = new typeObj(8,'加工中心','Machining-center',1);
type3Array[2] = new typeObj(9,'数控机床','NC-machine',1);
type3Array[3] = new typeObj(10,'车床','lathe',1);
type3Array[4] = new typeObj(26,'钻床','Drilling-machine',1);
type3Array[5] = new typeObj(27,'镗床','Boring-machine',1);
type3Array[6] = new typeObj(28,'磨床','Gringding-machine',1);
type3Array[7] = new typeObj(29,'齿轮加工机床','Gear-cutting-machine',1);
type3Array[8] = new typeObj(30,'螺纹加工机床','Thread-cutting-machine',1);
type3Array[9] = new typeObj(31,'铣床','Milling-machine',1);
type3Array[10] = new typeObj(32,'刨床、插床、拉床','Planing',1);
type3Array[11] = new typeObj(33,'锯床','Sawing-machine',1);
type3Array[12] = new typeObj(34,'组合机床','Unit-machine',1);
type3Array[13] = new typeObj(35,'机械压力机','Mechanical-press',2);
type3Array[14] = new typeObj(36,'液压机','Hydraulic-press',2);
type3Array[15] = new typeObj(37,'自动锻机','Automatic-forging-machine',2);
type3Array[16] = new typeObj(38,'锻造机械','Forging-machine',2);
type3Array[17] = new typeObj(39,'剪切机','Shearing-cutting-machine',2);
type3Array[18] = new typeObj(40,'弯曲校正机','Bend-straitening-machine',2);
type3Array[19] = new typeObj(41,'电火花加工','Electrical-discharge-machining',3);
type3Array[20] = new typeObj(42,'激光加工','Laser-machine',3);
type3Array[21] = new typeObj(43,'超声加工设备','Ultrasonic-machine',3);
type3Array[22] = new typeObj(44,'刀具','Tool',4);
type3Array[23] = new typeObj(45,'三坐标测量机','Coordinate-measuring-instrument',5);
type3Array[24] = new typeObj(46,'量仪','Measuring-instrument',5);
type3Array[25] = new typeObj(47,'量具、工具','Measuring-clevice-tool',5);
type3Array[26] = new typeObj(48,'数控系统','Numerical-control-system',6);
type3Array[27] = new typeObj(49,'可编程序控制器','Proguamable-controller',6);
type3Array[28] = new typeObj(50,'电机及驱动','Motor-and-drive',6);
type3Array[29] = new typeObj(51,'位置传感器','Position-sensor',6);
type3Array[30] = new typeObj(52,'低压电器','Low-vollage-electrical-equipment',9);
type3Array[31] = new typeObj(53,'CAD/CAE/CAF/CAM等软件','CAD-CAE-CAF-CAM',6);
type3Array[32] = new typeObj(54,'机床元部件','Machine-parts',7);
type3Array[33] = new typeObj(55,'机床附件','Machine-tool-accessories',7);
type3Array[34] = new typeObj(56,'机床配套设备','Machine-complement-eguipment',7);
type3Array[35] = new typeObj(76,'其他机床','other',8);
type3Array[36] = new typeObj(79,'水刀加工设备','Machine-sd',3);
type3Array[37] = new typeObj(80,'电子束加工设备','Machine-dzs',3);
type3Array[38] = new typeObj(83,'变压器','Trans-Former',9);
type3Array[39] = new typeObj(85,'五金工具','WuJin',8);
type3Array[40] = new typeObj(86,'工厂一网无线','YiWangWuXian',6);
type3Array[41] = new typeObj(88,'稳压器','WeiYa',9);
type3Array[42] = new typeObj(89,'打标设备','dabiao',3);
type4Array[0] = new typeObj(0,'请选择','-',0);
type4Array[1] = new typeObj(1,'车削加工中心','Turning-center',8);
type4Array[2] = new typeObj(2,'钻削加工中心','Drilling-center',8);
type4Array[3] = new typeObj(3,'铣削加工中心','Milling-center',8);
type4Array[4] = new typeObj(4,'立式加工中心','Vertical-machining-center',8);
type4Array[5] = new typeObj(5,'卧式加工中心','Horizontal-machining-center',8);
type4Array[6] = new typeObj(8,'立卧转换加工中心','Vertical-horizontalChangeMachining-center',8);
type4Array[7] = new typeObj(10,'龙门加工中心','Portal-machining-center',8);
type4Array[8] = new typeObj(11,'复合加工中心','Compound-machining-center',8);
type4Array[9] = new typeObj(12,'柔性加工单元','Flexible-manufacturing-cell-FMC',8);
type4Array[10] = new typeObj(13,'其他加工中心','Other-machining-center',8);
type4Array[11] = new typeObj(14,'数控车床','NC-lathe',9);
type4Array[12] = new typeObj(15,'数控卧式车床','Horizontal-NC-lathe',9);
type4Array[13] = new typeObj(16,'数控立式车床','Vertical-NC-lathe',9);
type4Array[14] = new typeObj(17,'数控仪表车床','NC-Instrument-lathe',9);
type4Array[15] = new typeObj(18,'数控纵切车床','NC-slitting-lathe',9);
type4Array[16] = new typeObj(19,'数控落地车床','NC-face-lathe19',9);
type4Array[17] = new typeObj(20,'数控压力机','NC-press',9);
type4Array[18] = new typeObj(21,'高速冲床','High-specd-punching-machine',35);
type4Array[19] = new typeObj(22,'其他压力机','Other-press',35);
type4Array[20] = new typeObj(24,'自动锻机','Automatic-forging',37);
type4Array[21] = new typeObj(25,'锻锤','DuanChui',38);
type4Array[22] = new typeObj(29,'校直机','Straitening-machine',40);
type4Array[23] = new typeObj(31,'折弯机','Bending-machine',40);
type4Array[24] = new typeObj(51,'其他机床','QiTA',76);
type4Array[25] = new typeObj(56,'数控铣床','NC-milling-machine',9);
type4Array[26] = new typeObj(57,'数控龙门铣床','NC-portal-milling-machine',9);
type4Array[27] = new typeObj(58,'数控铣镗床','NC-milling-boring-machine',9);
type4Array[28] = new typeObj(59,'数控钻床','NC-drilling-machine',9);
type4Array[29] = new typeObj(60,'数控摇臂钻床','NC-radial-drilling-machine',9);
type4Array[30] = new typeObj(61,'数控立式钻床','NC-vertical-drilling-machine',9);
type4Array[31] = new typeObj(62,'数控镗床','NC-boring-machine',9);
type4Array[32] = new typeObj(63,'数控卧式镗床','NC-horizontal-boring-machine',9);
type4Array[33] = new typeObj(64,'数控立式镗床','NC-vertical-boring-machine',9);
type4Array[34] = new typeObj(65,'数控镗铣床','NC-boring-milling-machine',9);
type4Array[35] = new typeObj(66,'数控坐标镗床','NC-coordinate-boring-machine',9);
type4Array[36] = new typeObj(67,'数控深孔镗床','NC-deep-hole-boring-machine',9);
type4Array[37] = new typeObj(68,'数控磨床','NC-grinding-machine',9);
type4Array[38] = new typeObj(69,'数控平面磨床','NC-surface-grinding-machine',9);
type4Array[39] = new typeObj(70,'数控外圆磨床','NC-external-grinding-machine',9);
type4Array[40] = new typeObj(71,'数控内圆磨床','NC-internal-grinding-machine',9);
type4Array[41] = new typeObj(72,'数控无心磨床','NC-centeress-grinding-machine',9);
type4Array[42] = new typeObj(73,'数控导轨磨床','NC-guide-way-grinding-machine',9);
type4Array[43] = new typeObj(74,'数控曲轴磨床','NC-crank-shaft-grinding-machine',9);
type4Array[44] = new typeObj(75,'数控轧辊磨床','NC-roll-grinding-machine',9);
type4Array[45] = new typeObj(76,'数控花键磨床','NC-spline-grinding-machine',9);
type4Array[46] = new typeObj(77,'数控刀具磨床','NC-tool-grinding-machine',9);
type4Array[47] = new typeObj(78,'数控成型磨床','NC-form-grinding-machine',9);
type4Array[48] = new typeObj(79,'数控端面磨床','NC-end-surface-grinding-machine',9);
type4Array[49] = new typeObj(80,'数控齿轮加工机床','NC-gear-cutting-machine',9);
type4Array[50] = new typeObj(81,'数控锥齿机','NC-berel-gear-cutting-machine',9);
type4Array[51] = new typeObj(82,'数控滚齿机','NC-hobbing-machine',9);
type4Array[52] = new typeObj(83,'数控铣齿机','NC-gear-milling-machine',9);
type4Array[53] = new typeObj(84,'数控插齿机','NC-gear-slotting-machine',9);
type4Array[54] = new typeObj(85,'数控磨齿机','NC-gear-grinding-machine',9);
type4Array[55] = new typeObj(86,'数控剃齿机','NC-gear-sharing-machine',9);
type4Array[56] = new typeObj(87,'数控螺纹加工机床','NC-thread-cutting-machine',9);
type4Array[57] = new typeObj(88,'数控螺纹车床','NC-thread-lathe',9);
type4Array[58] = new typeObj(89,'数控螺纹磨床','NC-thread-grinding-machine',9);
type4Array[59] = new typeObj(90,'数控螺纹铣床','NC-thread-milling-machine',9);
type4Array[60] = new typeObj(91,'数控插床','NC-slotting-machine',9);
type4Array[61] = new typeObj(92,'数控拉床','NC-broaching-machine',9);
type4Array[62] = new typeObj(93,'数控刨床','NC-planing-machine',9);
type4Array[63] = new typeObj(94,'数控锯床','NC-sawing-machine',9);
type4Array[64] = new typeObj(95,'数控电火花机床','NCelectrical-dischange-machine-EDM',9);
type4Array[65] = new typeObj(96,'数控线切割机床','NC-wire-cutting-machine',9);
type4Array[66] = new typeObj(97,'数控电火花成型机床','NC-EDM-forming-machine',9);
type4Array[67] = new typeObj(98,'数控电火花深孔机床','NC-EDM-deep-hole-machine',9);
type4Array[68] = new typeObj(99,'数控激光加工机床','NC-laser-cutting-machine',9);
type4Array[69] = new typeObj(100,'仪表车床','Instrument-lathe',10);
type4Array[70] = new typeObj(101,'自动车床','Automatic-lathe',10);
type4Array[71] = new typeObj(102,'回轮车床','Capstan-lathe',10);
type4Array[72] = new typeObj(103,'轮塔车床','Turret-lathe',10);
type4Array[73] = new typeObj(104,'纵切车床','Slitting-lathe',10);
type4Array[74] = new typeObj(105,'立式车床','Vertical-lathe',10);
type4Array[75] = new typeObj(106,'落地车床','Face-lathe',10);
type4Array[76] = new typeObj(107,'卧式车床','Horizontal-lathe',10);
type4Array[77] = new typeObj(108,'马鞍车床','Saddle-lathe',10);
type4Array[78] = new typeObj(109,'仿形车床','Copying-lathe',10);
type4Array[79] = new typeObj(110,'其他车床','Other-lathe',10);
type4Array[80] = new typeObj(111,'摇臂钻床','Radial-drilling-machine',26);
type4Array[81] = new typeObj(112,'台式钻床','Table-drilling-machine',26);
type4Array[82] = new typeObj(113,'立式钻床','Vestical-drilling-machine',26);
type4Array[83] = new typeObj(114,'其他钻床','Other-drilling-machine',26);
type4Array[84] = new typeObj(115,'深孔镗床','Deep-hole-boring-machine',27);
type4Array[85] = new typeObj(116,'坐标镗床','Coodinate-boring-machine',27);
type4Array[86] = new typeObj(117,'立式镗床','Vertical-boring-machine',27);
type4Array[87] = new typeObj(118,'卧式镗床','Horizontal-boring-machine',27);
type4Array[88] = new typeObj(120,'其他镗床','Other-boring-machine',27);
type4Array[89] = new typeObj(122,'无心磨床','Centerless-grinding-machine',28);
type4Array[90] = new typeObj(123,'外圆磨床','External-grinding-machine',28);
type4Array[91] = new typeObj(124,'内圆磨床','Internal-grinding-machine',28);
type4Array[92] = new typeObj(125,'导轨磨床','Guide-way-grinding-machine',28);
type4Array[93] = new typeObj(126,'轧辊磨床','Roll-grinding-machine',28);
type4Array[94] = new typeObj(127,'曲轴磨床','Crant-shaft-grinding-machine',28);
type4Array[95] = new typeObj(128,'花键磨床','Spline-grinding-machine',28);
type4Array[96] = new typeObj(129,'刀具磨床','Cutter-grinding-machine',28);
type4Array[97] = new typeObj(130,'工具磨床','Tool-grinding-machine',28);
type4Array[98] = new typeObj(131,'平面磨床','Surface-grinding-machine',28);
type4Array[99] = new typeObj(132,'端面磨床','Endface-grinding-machine',28);
type4Array[100] = new typeObj(133,'成型磨床','Form-grinding-machine',28);
type4Array[101] = new typeObj(134,'珩磨机','Horning-machine',28);
type4Array[102] = new typeObj(135,'抛光机','Polishing-machine',28);
type4Array[103] = new typeObj(136,'研磨机','Lapping-machine',28);
type4Array[104] = new typeObj(137,'除刺机','Deburring-machine',28);
type4Array[105] = new typeObj(138,'光饰机床','Finishing-machine',28);
type4Array[106] = new typeObj(139,'其他磨床','Other-grinding-machine',28);
type4Array[107] = new typeObj(140,'锥齿机','Berel-gear-cutting-machine',29);
type4Array[108] = new typeObj(141,'滚齿机','Hobbing-machine',29);
type4Array[109] = new typeObj(142,'铣齿机','Gear-milling-machine',29);
type4Array[110] = new typeObj(143,'剃齿机','Gear-sharing-machine',29);
type4Array[111] = new typeObj(144,'插齿机','Gear-slotting-machine',29);
type4Array[112] = new typeObj(145,'珩齿机','Gear-horning-machine',29);
type4Array[113] = new typeObj(146,'磨齿机','Gear-grinding-machine',29);
type4Array[114] = new typeObj(147,'其他齿轮加工机床','Other-gear-cutting-machine',29);
type4Array[115] = new typeObj(148,'套丝机','Thread-sleaving-machine',30);
type4Array[116] = new typeObj(149,'攻丝机','Tapping-machine',30);
type4Array[117] = new typeObj(150,'倒角机','Gear-deburring-machine',30);
type4Array[118] = new typeObj(151,'螺纹车床','Thread-lathe',30);
type4Array[119] = new typeObj(152,'螺纹磨床','Thread-grinding-machine',30);
type4Array[120] = new typeObj(153,'螺纹铣床','Thread-milling-machine',30);
type4Array[121] = new typeObj(154,'平面铣床','Surface-milling-machine',31);
type4Array[122] = new typeObj(155,'龙门铣床','Portal-milling-machine',31);
type4Array[123] = new typeObj(156,'立式铣床','Vertical-milling-machine',31);
type4Array[124] = new typeObj(157,'刨床','Planing-machine',32);
type4Array[125] = new typeObj(158,'插床','Slotting-machine',32);
type4Array[126] = new typeObj(159,'拉床','Broaching-machine',32);
type4Array[127] = new typeObj(160,'带锯床','Band-saw-machine',33);
type4Array[128] = new typeObj(161,'圆锯床','Circular-saw-machine',33);
type4Array[129] = new typeObj(162,'弓锯床','Hack-saw-machine',33);
type4Array[130] = new typeObj(163,'组合机床','Unit-machine',34);
type4Array[131] = new typeObj(165,'卷板机','Sheet-scrolling-machine',40);
type4Array[132] = new typeObj(166,'弯管机','Tube-bending-machine',40);
type4Array[133] = new typeObj(167,'折边机','Edge-folding-machine',40);
type4Array[134] = new typeObj(168,'电火花小孔机床','Electrical-discharge-small-hole-machine',41);
type4Array[135] = new typeObj(169,'电火花深孔机床','Electrical-discharge-deephole-machine',41);
type4Array[136] = new typeObj(170,'电火花成型机床','Electrial-discharge-foming-machine',41);
type4Array[137] = new typeObj(171,'电火花线切割机床','Esectrical-discharge-wire-cutting-macine',41);
type4Array[138] = new typeObj(172,'电解等其他电加工机','Otherelectrical-discharge-cutting-machie',41);
type4Array[139] = new typeObj(173,'激光打标机','Laser-stamping-machine',42);
type4Array[140] = new typeObj(174,'快速成形机','High-speet-forming-machine',42);
type4Array[141] = new typeObj(175,'激光打孔机','Laser-hole-making-machine',42);
type4Array[142] = new typeObj(176,'激光切割机','Laser-cutting-machine',42);
type4Array[143] = new typeObj(177,'激光焊接机','Laser-welding-machine',42);
type4Array[144] = new typeObj(178,'激光强化设备','Laser-strenthening-machine',42);
type4Array[145] = new typeObj(179,'数控机床用刀具','Tools-for-NC-machine-tool',44);
type4Array[146] = new typeObj(180,'车刀','Turning-tool',44);
type4Array[147] = new typeObj(181,'刨刀','Planing-tool',44);
type4Array[148] = new typeObj(182,'铣刀','Milling-cutfer',44);
type4Array[149] = new typeObj(183,'孔加工刀具','Hole-cutter',44);
type4Array[150] = new typeObj(184,'螺纹加工刀具','Thread-cutting-tool',44);
type4Array[151] = new typeObj(185,'齿轮加工刀具','Gear-cutting-tool',44);
type4Array[152] = new typeObj(186,'刀片','Tip',44);
type4Array[153] = new typeObj(187,'超硬刀具','Superhard-tool',44);
type4Array[154] = new typeObj(188,'刀具涂层','Tool-coafing',44);
type4Array[155] = new typeObj(189,'锯刀','Saw',44);
type4Array[156] = new typeObj(190,'拉刀','Breach',44);
type4Array[157] = new typeObj(191,'通用量仪','General-measuring-insframent',46);
type4Array[158] = new typeObj(192,'表面粗糙度量仪','Surface-finish-measuring-instrument',46);
type4Array[159] = new typeObj(193,'形位误差量仪','Figuration-error-measuring-instrument',46);
type4Array[160] = new typeObj(194,'刀具预调量仪','Tool-pre-setting-instrument',46);
type4Array[161] = new typeObj(195,'对刀仪','Tool-setting-clevice',46);
type4Array[162] = new typeObj(196,'齿轮测量中心','Gear-measuring-instrument',46);
type4Array[163] = new typeObj(197,'平直类量具','Flate-type-measuring-clevice',47);
type4Array[164] = new typeObj(198,'卡尺','caeiper',47);
type4Array[165] = new typeObj(199,'千分尺','Micrometer',47);
type4Array[166] = new typeObj(200,'表类量具','Watch-type-measuring-clevice',47);
type4Array[167] = new typeObj(201,'量规','Gauge',47);
type4Array[168] = new typeObj(202,'塞规','Plug-gauge',47);
type4Array[169] = new typeObj(203,'工具','Tool',47);
type4Array[170] = new typeObj(205,'工装','Tooling-apparatus',47);
type4Array[171] = new typeObj(206,'PLC可编程序控制器','PLC-programable-controller',49);
type4Array[172] = new typeObj(207,'PC人机界面','PC-man-macine-interface',49);
type4Array[173] = new typeObj(208,'触摸屏','Touch-screen',49);
type4Array[174] = new typeObj(209,'显示器','Display',49);
type4Array[175] = new typeObj(210,'伺服系统','Servo-system',50);
type4Array[176] = new typeObj(211,'步进电机','Stepping-motor',50);
type4Array[177] = new typeObj(212,'伺服电机','Servo-motor',50);
type4Array[178] = new typeObj(213,'直线电机','Linea-motor',50);
type4Array[179] = new typeObj(214,'变频调速器','Altemafive-frequency-regulator',50);
type4Array[180] = new typeObj(215,'矢量控制器','Vcctor-controller',50);
type4Array[181] = new typeObj(216,'感应同步器','Inductive-sgnchroniser',51);
type4Array[182] = new typeObj(217,'数显装置','Numerical-displager',51);
type4Array[183] = new typeObj(218,'光栅尺','Photo-grating',51);
type4Array[184] = new typeObj(219,'磁栅尺','Magnitic-grating',51);
type4Array[185] = new typeObj(220,'球栅尺','Ball-grating',51);
type4Array[186] = new typeObj(221,'玻璃光栅尺','Glass-grafing',51);
type4Array[187] = new typeObj(222,'光电编码器','Photo-electric-programer',51);
type4Array[188] = new typeObj(223,'增量编码器','Increment-prcgramer',51);
type4Array[189] = new typeObj(225,'传感器','Sensor',51);
type4Array[190] = new typeObj(226,'按钮','Button',52);
type4Array[191] = new typeObj(227,'开关','Switch',52);
type4Array[192] = new typeObj(228,'继电器','Relay',52);
type4Array[193] = new typeObj(229,'接触器','Contactor',52);
type4Array[194] = new typeObj(230,'过载保护器','Overload-Protactor',52);
type4Array[195] = new typeObj(231,'光幕开关','Light-screen-switch',52);
type4Array[196] = new typeObj(232,'吨位监控','Tonnage-supervisor',52);
type4Array[197] = new typeObj(233,'主轴','Spindle',54);
type4Array[198] = new typeObj(234,'电主轴','Electrical-spindle',54);
type4Array[199] = new typeObj(235,'丝杠','Screw',54);
type4Array[200] = new typeObj(236,'滚珠丝杠','Ball-screw',54);
type4Array[201] = new typeObj(237,'导轨','Guideway',54);
type4Array[202] = new typeObj(238,'直线导轨','Linear-guideway',54);
type4Array[203] = new typeObj(239,'齿轮','Gear',54);
type4Array[204] = new typeObj(240,'离合器','Clutch',54);
type4Array[205] = new typeObj(241,'制动器','Brake',54);
type4Array[206] = new typeObj(242,'操作件','Operate-Parts',54);
type4Array[207] = new typeObj(243,'传动件','Transmission-parts',54);
type4Array[208] = new typeObj(244,'机床部件','Machine-part',54);
type4Array[209] = new typeObj(245,'分度头','Index-head',55);
type4Array[210] = new typeObj(246,'工作台','Work-table',55);
type4Array[211] = new typeObj(247,'平口钳','Flat-clamp',55);
type4Array[212] = new typeObj(248,'卡盘','Chuck',55);
type4Array[213] = new typeObj(249,'吸盘','Absorb-disk',55);
type4Array[214] = new typeObj(250,'夹具','Gripper',55);
type4Array[215] = new typeObj(251,'刀库','Tool-magazine',55);
type4Array[216] = new typeObj(252,'刀柄','Tool-holder',55);
type4Array[217] = new typeObj(253,'刀架','Tool-block',55);
type4Array[218] = new typeObj(254,'润滑油','Labricating-oil',56);
type4Array[219] = new typeObj(255,'润滑装置','Labricating-eguipment',56);
type4Array[220] = new typeObj(256,'冷却液','Cooling-fluid',56);
type4Array[221] = new typeObj(257,'排屑过滤装置','Chip-removal-filtering-equipment',56);
type4Array[222] = new typeObj(258,'切削液','Cutting-fluid',56);
type4Array[223] = new typeObj(259,'防锈剂','Unti-ccrrosion-fluid',56);
type4Array[224] = new typeObj(260,'液压','Hydraulic',56);
type4Array[225] = new typeObj(261,'气动','Pneumatic',56);
type4Array[226] = new typeObj(262,'密封件','Sealing-part',56);
type4Array[227] = new typeObj(263,'防护罩','Protecting-cover',56);
type4Array[228] = new typeObj(264,'拖链','Track-chain',56);
type4Array[229] = new typeObj(265,'送料器','Feeder',56);
type4Array[230] = new typeObj(266,'砂轮修正器','Wheel-dressor',56);
type4Array[231] = new typeObj(267,'冲床周边设备','Punch-machine-peripheral-equipment',56);
type4Array[232] = new typeObj(269,'镗铣床','Boring-milling-machine',31);
type4Array[233] = new typeObj(270,'三坐标测量仪器','ShanZhuoBiao',45);
type4Array[234] = new typeObj(272,'数控系统','Shukong',48);
type4Array[235] = new typeObj(273,'吊环','DiaoHuan',55);
type4Array[236] = new typeObj(274,'驱动器','Driver',52);
type4Array[237] = new typeObj(275,'变压器','BianYa',83);
type4Array[238] = new typeObj(276,'剪断机','janDuan',39);
type4Array[239] = new typeObj(277,'剪板机','Plate-Cutter',39);
type4Array[240] = new typeObj(278,'单柱液压机','Yeya',36);
type4Array[241] = new typeObj(279,'清洗机','Qingxi',43);
type4Array[242] = new typeObj(283,'表面处理','Biaomian',56);
type4Array[243] = new typeObj(284,'CAD','Cad',53);
type4Array[244] = new typeObj(285,'CAE','Cae',53);
type4Array[245] = new typeObj(286,'CAF','Caf',53);
type4Array[246] = new typeObj(287,'CAM','Cam',53);
type4Array[247] = new typeObj(288,'激光干涉仪','Gansheyi',46);
type4Array[248] = new typeObj(289,'冲剪机','ChongJian',39);
type4Array[249] = new typeObj(290,'锻压机','DuanYaJi',38);
type4Array[250] = new typeObj(291,'其他液压机','OtherYeYa',36);
type4Array[251] = new typeObj(292,'拉床','Lachuan',82);
type4Array[252] = new typeObj(293,'振动时效','ZhengDongShiXiao',56);
type4Array[253] = new typeObj(294,'水刀切割','ShuiDao-machine',79);
type4Array[254] = new typeObj(295,'电子束加工设备','DianZhiShu-machine',80);
type4Array[255] = new typeObj(296,'模具','MoJu',47);
type4Array[256] = new typeObj(297,'五金工具','WuJinGongJu',85);
type4Array[257] = new typeObj(298,'起重机','QiZhongJi',56);
type4Array[258] = new typeObj(299,'开卷机','KuaiJunJi',39);
type4Array[259] = new typeObj(300,'数控刀塔式车床','ShuKongZhongQieCheChuang',9);
type4Array[260] = new typeObj(302,'工厂一网无线','YiWang',86);
type4Array[261] = new typeObj(303,'雕铣机','DiaoXi',9);
type4Array[262] = new typeObj(304,'稳压器','WenYaQi',88);
type4Array[263] = new typeObj(305,'卧式铣床','Horizontal-Milling-Machine',31);
type4Array[264] = new typeObj(306,'数控工具磨床','Nc-Tool-Grinder-machine',9);
type4Array[265] = new typeObj(307,'五轴联动加工中心','WuZhouLianDong',8);
type4Array[266] = new typeObj(308,'数控深孔钻床','ShuKongZhuanChang',9);
type4Array[267] = new typeObj(309,'金属加工液','JinShuJiaGong',56);
type4Array[268] = new typeObj(311,'车铣加工中心 ','chexi',8);
type4Array[269] = new typeObj(312,'便携式关节测量臂','sanzuobiao',45);
type4Array[270] = new typeObj(313,'视像测量系统','sanzuobiaoceliang',45);
type4Array[271] = new typeObj(314,'影像测量仪','yingxiang',45);
type4Array[272] = new typeObj(315,'桥式测量仪','qiaos',45);
type4Array[273] = new typeObj(316,'打标设备','dabiao',89);
type4Array[274] = new typeObj(317,'开式压力机','yaliji',35);
type4Array[275] = new typeObj(318,'闭式压力机','bishi',35);
type4Array[276] = new typeObj(319,'可倾式压力机','yalijikeqing',35);
type4Array[277] = new typeObj(320,'多工位冲床','chong',35);
type4Array[278] = new typeObj(321,'板材冲孔机','chongkong',35);
type4Array[279] = new typeObj(322,'管材冲孔机','congkong',35);
type4Array[280] = new typeObj(323,'转塔冲床','zhuanta',35);
type4Array[281] = new typeObj(324,'盘式冲床','panshi',35);
type4Array[282] = new typeObj(325,'摩擦压力机','MOCA',35);
type4Array[283] = new typeObj(326,'单点压力机','dandian',35);
type4Array[284] = new typeObj(327,'双点压力机','shuangdian',35);
type4Array[285] = new typeObj(328,'四点压力机','sidian',35);
type4Array[286] = new typeObj(329,'万能工具磨床','MOCHUANG',28);
type4Array[287] = new typeObj(330,'钻头刃磨床','zhuantou',28);
type4Array[288] = new typeObj(331,'金刚石刀具磨床','jingangshi',28);
type4Array[289] = new typeObj(332,'七轴联动数控工具磨床','qizou',28);
type4Array[290] = new typeObj(333,'多轴器','duozhou',54);
type4Array[291] = new typeObj(334,'滚刀刃磨床','gundaomochuang',28);
type4Array[292] = new typeObj(335,'拉刀刃磨床','landaorenmo',28);
type4Array[293] = new typeObj(337,'分条圆刀 ','fentiaoyuandao',44);
type4Array[294] = new typeObj(338,'中厚板材精密模切刀具','zhonghou',44);
type4Array[295] = new typeObj(339,'精密薄板裁切剪切刀具','jingmibaoban',44);
type4Array[296] = new typeObj(340,'热轧剪切刀具','FDF',44);
type4Array[297] = new typeObj(341,'冷轧剪切刀具','lengzha',44);
type4Array[298] = new typeObj(344,'梯形丝杠','tingxings',54);
type4Array[299] = new typeObj(345,'定位控制','dingweikongzhi',48);
type4Array[300] = new typeObj(346,'车削加工中心','chexiaojiagongzhongxin',8);
type4Array[301] = new typeObj(347,'测高仪','Cegaoyichanpin',46);
type4Array[302] = new typeObj(348,'数控落地镗铣床','Shukongluodixichuangchanpin',9);
type4Array[303] = new typeObj(350,'镗刀','Tangdao',44);
type4Array[304] = new typeObj(351,'PLC','PLC',49);
type4Array[305] = new typeObj(352,'硬质合金刀具','Yingzhihejindaoju',44);
type4Array[306] = new typeObj(353,'双柱液压机','Yeya02',36);
type4Array[307] = new typeObj(354,'四柱液压机','Yeya04',36);
type4Array[308] = new typeObj(355,'珩磨头','Hengmotou',28);
type4Array[309] = new typeObj(356,'数控激光切割机','Shukongjiguangqiegeji',9);
type4Array[310] = new typeObj(357,'减速机','Jiansuji',54);
type4Array[311] = new typeObj(358,'仓储设备','Cangchushebei',56);
type4Array[312] = new typeObj(359,'水冷机、油冷机','Shuilengjiyoulengji',56);
type4Array[313] = new typeObj(360,'重型卧式车床','Zhxwschch',9);
type4Array[314] = new typeObj(361,'重型立式车床','Zhxlshchch',9);
type4Array[315] = new typeObj(362,'离心泵','Lixinbeng',56);
type4Array[316] = new typeObj(363,'钻孔攻牙加工中心','Zkgyjgzhx',8);





