<!-- 品牌产地js模块 -->
var brandProduceObj = new Object();
var htmlPageUrl ="/html";


brandProduceObj[65] = "北京谱脉";
brandProduceObj[64] = "英国ANDILOG";
brandProduceObj[63] = "英国";
brandProduceObj[62] = "德国喜利得";
brandProduceObj[61] = "丰生电子";
brandProduceObj[60] = "国产";
brandProduceObj[59] = "中国台湾";
brandProduceObj[58] = "华广电器";
brandProduceObj[56] = "北京三航";
brandProduceObj[55] = "美国ACL";
brandProduceObj[54] = "TAINA";
brandProduceObj[53] = "台湾SPEED";
brandProduceObj[52] = "日本MTC";
brandProduceObj[51] = "德国泛音";
brandProduceObj[50] = "日本NILE";
brandProduceObj[49] = "日本MERRY";
brandProduceObj[48] = "日本中村";
brandProduceObj[47] = "日本东日";
brandProduceObj[46] = "日本TOP";
brandProduceObj[45] = "日本OPT";
brandProduceObj[44] = "日本土牛";
brandProduceObj[43] = "日本贝印";
brandProduceObj[42] = "日本工程师";
brandProduceObj[41] = "美国理想";
brandProduceObj[40] = "日本GOODY";
brandProduceObj[39] = "威迪";
brandProduceObj[38] = "日本三丰";
brandProduceObj[37] = "中国奥能";
brandProduceObj[36] = "瑞士";
brandProduceObj[35] = "日本山崎";
brandProduceObj[34] = "日本GOOT";
brandProduceObj[33] = "德国百得";
brandProduceObj[32] = "台湾亿荣";
brandProduceObj[30] = "史丹利";
brandProduceObj[29] = "美国";
brandProduceObj[28] = "德国博世";
brandProduceObj[27] = "德国";
brandProduceObj[26] = "德国威汉";
brandProduceObj[25] = "日本罗宾汉";
brandProduceObj[24] = "日本";
brandProduceObj[23] = "台湾";
brandProduceObj[22] = "中国";
brandProduceObj[20] = "其它品牌";
brandProduceObj[19] = "佳乐";
brandProduceObj[18] = "JETECH";
brandProduceObj[17] = "爱烙达瓦斯";
brandProduceObj[16] = "OPT";
brandProduceObj[15] = "牛王";
brandProduceObj[14] = "清华同方";
brandProduceObj[13] = "威乐Weller";
brandProduceObj[12] = "台湾CT";
brandProduceObj[11] = "快克QUICK";
brandProduceObj[10] = "优利德";
brandProduceObj[9] = "山创";
brandProduceObj[8] = "华广";
brandProduceObj[7] = "田岛";
brandProduceObj[6] = "日本铁工";
brandProduceObj[5] = "瑞士莱丹";
brandProduceObj[4] = "德国埃莎";
brandProduceObj[3] = "日本马牌";
brandProduceObj[2] = "台湾宝工";
brandProduceObj[1] = "日本白光";

//显示品牌、产地链接信息
function showBrandProduce(dataId, dataType)
{
	if(dataType == '2')
	{
		//产地
		document.write('<font color=#000000>' + brandProduceObj[dataId] + '</font>\n');
	}
	else
	{
		//品牌
		document.write('<font color=#000000>' + brandProduceObj[dataId] + '</font>\n');
	}
}