//
function miniCart(){
var prdCount = 0, prdString = "", subTotal = (xmlConfig.cartSubTotal > 0)?xmlConfig.cartSubTotal:0;
	if(xmlOHeader.childNodes.length==0) subTotal = 0;
	for(var i=0;i<xmlOHeader.childNodes.length;i++){
		prdCount = prdCount+(parseInt(xmlOHeader.childNodes[i].QuantityAmount));
		};
	prdString += "Produkte:<strong>&nbsp;" + prdCount + "</strong><br>";
	prdString += "Summe:<strong>&nbsp;" + TFormatCurrency(subTotal, objPriCurrency) + "</strong><br><br>";
	prdString += "<a class=\"WAGRUNAV\" href=\"orderform." + xmlConfig.fileExtension + "\">";
	prdString += "<strong>" + '<img src="assets/images/bullet.gif" width="11" height="14" border="0" align="absmiddle" hspace="0" vspace="0" class="catnav">' + "Zum Bestellschein</strong></a>";
	return(prdString);
	};
//
var TNavDropDownIndent = ".."
//
function NavLinkedDropDownList(){
	return(TNavDropDownList(true));
	};
//
function NavDropDownList(){
	return(TNavDropDownList(false));
	};
//
function storeSearchParameters(optionValueArray){
var xmlSearchEngine = xmlConfig.getFirstItem("SearchEngine");
	if(optionValueArray[0]!="null"&&optionValueArray[0]!="nada"){
		xmlSearchEngine.categoryIndex = optionValueArray[0];
		xmlSearchEngine.categoryId = optionValueArray[2];
		xmlSearchEngine.ByCategory = "1";
		}
	else{
		xmlSearchEngine.categoryIndex = "null";
		xmlSearchEngine.categoryId = "null";
		xmlSearchEngine.ByCategory = "0";
		};
	};
//
function TNavDropDownList(asLink){
var rString = "";
var myNavIndex = "";
	if(asLink) myNavIndex = xmlConfig.navIndex;
	else myNavIndex = xmlConfig.getFirstItem("SearchEngine").categoryIndex;
	if(!(myNavIndex=="null"||myNavIndex=="")){ navigation[parseInt(myNavIndex)].active = true; };
	if(asLink) rString += "<select name=\"navselect\" onChange=\"changeLoc(this[this.selectedIndex].value.split(';;')[0],this[this.selectedIndex].value.split(';;')[1])\">"
	else rString += "<select name=\"navselect\" onChange=\"storeSearchParameters(this[this.selectedIndex].value.split(';;'))\">";
	rString += "<option value=\"nada;;start.htm;;null\">Gesamtkatalog</option>";
	for(var i=0; i<navigation.length; i++){
		if(navigation[i].parentId==null){
			rString += TNavDropDownItem(navigation[i], "");
			};
		};
	rString += "</select>";
	return(rString);
	};
//
function TNavDropDownItem(navItem, cptPreFix){
var rString = "";
	rString += "<option value=\"" + navItem.id + ";;" + navItem.linkUrl + ";;" + navItem.categoryId + "\"";
	if(navItem.active) rString += " selected";
	rString += ">" + cptPreFix + navItem.caption + "</option>";
	for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==navItem.id) rString += TNavDropDownItem(navigation[i], cptPreFix + TNavDropDownIndent);
	return(rString);	
	};
//
	function openItem(itemId){
	var objActiveItem = null;
		if(itemId!=null){
			objActiveItem = navigation[itemId];
			if(objActiveItem!=null){
				objActiveItem.open = true;
				openItem(objActiveItem.parentId);
				};
			};
		};
		
	function activateItem(itemId){
	var objActiveItem = null;
		if(itemId!=null){
			objActiveItem = navigation[itemId];
			if(objActiveItem!=null){
				objActiveItem.active = true;
				openItem(objActiveItem.parentId);
				};
			};
		};
		
	function itemHasSubelems(itemId){
		for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==itemId) return(true);
		return(false);
		};
	
	function TNavLinkList(){
	var strHTML = "";
		for(var i=0; i<navigation.length; i++) if(navigation[i].parentId==null) strHTML += printItem(navigation[i], 0);
		return(strHTML);
		};	
		
	function printItem(navItem, depth){
	var strHTML = "";
	var elemWidth = 1;
		strHTML += '<table width="100%" class="CATLINKS1STPARENT" border="0" cellpadding="1" cellspacing="0" >';
		strHTML += "<tr>"
		for(var i=0; i<depth; i++){
			strHTML += "<td";
			if(navItem.active) strHTML += " class=\"ACTIVECATEGORY\""
			else strHTML += " class=\"CATLINKS1STBULLET\"";
			strHTML += ' width="1%"><img src="assets/images/spacer.gif" width="11" height="1" height="1" alt="" border="0"></td>';
			};
		if(navItem.active) strHTML += '<td width="1%" class="ACTIVECATEGORY"><img src="assets/images/bulletcatact.gif" width="11" height="14" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else if(navItem.open&&itemHasSubelems(navItem.id)) strHTML += '<td width="1%" class="CATLINKS1STBULLET"><img src="assets/images/bulletcat1stcls.gif" width="11" height="14" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		else strHTML += '<td width=\"1%\"><img src="assets/images/bulletcat1st.gif" width="11" height="14" border="0" align="bottom" hspace="0" vspace="0" class="catnav"></td>'
		strHTML += "<td";
		if(navItem.active) strHTML += " class=\"ACTIVECATEGORY\""
		else strHTML += " class=\"CATLINKS1STBULLET\"";
		strHTML += "width=\"" + ( 100 - ( depth + 1 ) ) + "%\">"
			+ "<a href=\"" + navItem.linkUrl + "?categoryId=" + escape(navItem.id) + "\" class=\"WAGRUNAV\">"
			+ navItem.caption
			+ "</a>"
			+ "</td>";
		strHTML += "</tr>"
		strHTML += "</table>"
		depth++;
		if(navItem.active||navItem.open){
			for(var i=0; i<navigation.length;i++) if(navigation[i].parentId==navItem.id) strHTML += printItem(navigation[i], depth);
			};
		return(strHTML);
		};


//

// navElem
	function navElem(id,caption,linkUrl,parentId,categoryId){
		this.id = id;
		this.caption = caption;
		this.linkUrl = linkUrl;
		this.parentId = parentId;
		this.active = false;
		this.open = false;
		this.categoryId = categoryId;
		};
// navigation
var navigation = new Array();
//
navigation[0] = new navElem(0,"* PROMOTIONEN *","pi1326379597.htm",null,"1234");
navigation[1] = new navElem(1,"* LAGERABVERKAUF *","pi1230624378.htm",null,"674893");
navigation[2] = new navElem(2,"Barcodescanner","pi-1763732203.htm",1,"XScanner");
navigation[3] = new navElem(3,"Etikettendrucker","pi-1338261456.htm",1,"cfadsf");
navigation[4] = new navElem(4,"Handheld Geräte","pi98765197.htm",1,"236782");
navigation[5] = new navElem(5,"Diverses","pi-1026727458.htm",1,"6789vv");
navigation[6] = new navElem(6,"Drucker - stationär","pi296676596.htm",null,"106");
navigation[7] = new navElem(7,"Zubehör","pi1138588264.htm",6,"8784");
navigation[8] = new navElem(8,"Avery Dennison Etikettendrucker","pi1087314779.htm",6,"4000");
navigation[9] = new navElem(9,"Zubehör TTK","pi-960786176.htm",8,"ZubAveryDe");
navigation[10] = new navElem(10,"zubehör AP 5.4","pi119261331.htm",8,"AV5.4zub");
navigation[11] = new navElem(11,"Zubehör AP 5.6","pi-1357437100.htm",8,"511515");
navigation[12] = new navElem(12,"EOL","pi-892339644.htm",8,"2352");
navigation[13] = new navElem(13,"Zubehör TTX 67x","pi-1925480215.htm",12,"rt7zu8i9");
navigation[14] = new navElem(14,"cab Etikettendrucker","pi-1729486297.htm",6,"4010");
navigation[15] = new navElem(15,"Zubehör cab eos","pi-470111448.htm",14,"27891");
navigation[16] = new navElem(16,"Zubehör cab Drucker","pi1117194972.htm",14,"Zubehörcab");
navigation[17] = new navElem(17,"Druckköpfe","pi452680442.htm",14,"cabPrinthe");
navigation[18] = new navElem(18,"Druckköpfe für ältere Modelle","pi1569018632.htm",17,"6965561");
navigation[19] = new navElem(19,"Ersatzteile","pi-340028142.htm",14,"Ersatzcab");
navigation[20] = new navElem(20,"Ersatzteile für ältere Modelle","pi1235949137.htm",19,"472395");
navigation[21] = new navElem(21,"Abgekündigte Produkte","pi1145517468.htm",14,"53954383");
navigation[22] = new navElem(22,"Carl Valentin Etikettendrucker","pi1093595231.htm",6,"4020");
navigation[23] = new navElem(23,"Zubehör Compa II","pi1112779449.htm",22,"29248");
navigation[24] = new navElem(24,"Zubehör Micra","pi934865353.htm",22,"96412");
navigation[25] = new navElem(25,"Zubehör Pica II","pi-762033994.htm",22,"99651a");
navigation[26] = new navElem(26,"Zubehör Spectra","pi-221590858.htm",22,"67890");
navigation[27] = new navElem(27,"Zubehör Vita II","pi-1019438939.htm",22,"918541");
navigation[28] = new navElem(28,"Carl Valentin Druckköpfe","pi-1664446195.htm",22,"9241");
navigation[29] = new navElem(29,"Abgekündigte Produkte","pi1291821321.htm",22,"89236781");
navigation[30] = new navElem(30,"Zubehör Pica","pi1936790521.htm",29,"578");
navigation[31] = new navElem(31,"Datamax Etikettendrucker","pi1060861870.htm",6,"4030");
navigation[32] = new navElem(32,"Datamax E-Class","pi-1861073953.htm",31,"864864");
navigation[33] = new navElem(33,"Datamax M-Class","pi-974108620.htm",31,"4645455");
navigation[34] = new navElem(34,"Datamax I-Class","pi-1256494811.htm",31,"2768");
navigation[35] = new navElem(35,"Datamax H Class","pi-143136186.htm",31,"39348");
navigation[36] = new navElem(36,"Zubehör Datamax Drucker","pi-1871028841.htm",31,"dmxzubehör");
navigation[37] = new navElem(37,"E-Class","pi1068137023.htm",36,"Zub DMX E");
navigation[38] = new navElem(38,"E-Class Mark III","pi-834473210.htm",36,"63782");
navigation[39] = new navElem(39,"M-Class","pi-1317233832.htm",36,"Mclass");
navigation[40] = new navElem(40,"I-Class","pi-255356138.htm",36,"Iclass");
navigation[41] = new navElem(41,"H-Class","pi1073222961.htm",36,"ZubW-Class");
navigation[42] = new navElem(42,"Datamax Printheads","pi-65476126.htm",36,"prnheaddmx");
navigation[43] = new navElem(43,"Abkündigte Produkte","pi-1222002741.htm",31,"3295123");
navigation[44] = new navElem(44,"Godex Etikettendrucker","pi-521701320.htm",6,"4040");
navigation[45] = new navElem(45,"Zubehör Godex EZ-2x00","pi1888565138.htm",44,"EZ2x");
navigation[46] = new navElem(46,"EOL","pi-1211258023.htm",44,"4752839");
navigation[47] = new navElem(47,"Zubehör VP 2020","pi-400906923.htm",46,"sdafs");
navigation[48] = new navElem(48,"Farbpatronen","pi-869245174.htm",47,"56789");
navigation[49] = new navElem(49,"Ersatzprintheads","pi1784918211.htm",47,"748748");
navigation[50] = new navElem(50,"Intermec Etikettendrucker","pi1055332853.htm",6,"4050");
navigation[51] = new navElem(51,"Intermec Druckköpfe","pi-1028850362.htm",50,"992783");
navigation[52] = new navElem(52,"Zubehör","pi-658074439.htm",50,"IMDruZub");
navigation[53] = new navElem(53,"Zubehör Intermec PB20","pi-312874085.htm",52,"PB20");
navigation[54] = new navElem(54,"Zubehör Intermec PB42","pi1560879207.htm",52,"111112");
navigation[55] = new navElem(55,"Kabel zu Intermec Druckern","pi-1782623680.htm",52,"Kabelintdr");
navigation[56] = new navElem(56,"Interface Karten Intermec Drucker","pi1390300616.htm",52,"Intinterfa");
navigation[57] = new navElem(57,"Diverses zu Intermec Druckern","pi-52551041.htm",52,"druintdiv");
navigation[58] = new navElem(58,"Zubehör PD4x","pi538177053.htm",52,"323058");
navigation[59] = new navElem(59,"Zubehör PF8","pi1214820026.htm",52,"8451");
navigation[60] = new navElem(60,"EOL","pi-1030910528.htm",50,"543565");
navigation[61] = new navElem(61,"Opal Etikettendrucker","pi1136455121.htm",6,"41451");
navigation[62] = new navElem(62,"Zubehör OPAL OD5+","pi1829501526.htm",61,"356273");
navigation[63] = new navElem(63,"Zubehör OPAL OD22/23","pi-1856979214.htm",61,"14815");
navigation[64] = new navElem(64,"EOL","pi1159962402.htm",61,"54245");
navigation[65] = new navElem(65,"Primera Farbdrucker","pi1191918925.htm",6,"Primera24");
navigation[66] = new navElem(66,"Primera Farbpatronen","pi-1119704259.htm",65,"237422");
navigation[67] = new navElem(67,"Primera Etiketten","pi686691819.htm",65,"22394");
navigation[68] = new navElem(68,"Zubehör LX400","pi146986642.htm",65,"48347");
navigation[69] = new navElem(69,"Zubehör LX900","pi1310562472.htm",65,"23674");
navigation[70] = new navElem(70,"EOL","pi1278344240.htm",65,"24581");
navigation[71] = new navElem(71,"Sato Etikettendrucker","pi-1113399579.htm",6,"4060");
navigation[72] = new navElem(72,"Druckköpfe für Sato Drucker","pi-1781382762.htm",71,"Satoprinth");
navigation[73] = new navElem(73,"SATO Drucker Zub.","pi347948648.htm",71,"4");
navigation[74] = new navElem(74,"Interface Karten zu Sato Druckern","pi-733989619.htm",73,"Satointerf");
navigation[75] = new navElem(75,"Interface Karten für CT400","pi1152200069.htm",73,"44848");
navigation[76] = new navElem(76,"Sato GL Zubehör","pi1187492925.htm",73,"278362");
navigation[77] = new navElem(77,"Zubehör Sato CT4i","pi166520865.htm",73,"36952");
navigation[78] = new navElem(78,"Zubehör GTe4XXe","pi594627473.htm",71,"4843532");
navigation[79] = new navElem(79,"Zubehör Sato CG2","pi1521858274.htm",71,"66685");
navigation[80] = new navElem(80,"Zubehör Sato CG4","pi1333136858.htm",71,"11383");
navigation[81] = new navElem(81,"Zubehör Sato DR3","pi-990228669.htm",71,"328532");
navigation[82] = new navElem(82,"Zubehör Sato TG3","pi-1050821578.htm",71,"565187");
navigation[83] = new navElem(83,"Zubehör Sato TH2","pi-1381929720.htm",71,"2471");
navigation[84] = new navElem(84,"Abgekündigte Produkte","pi1107796245.htm",71,"EOL123");
navigation[85] = new navElem(85,"Toshiba Tec Etikettendrucker","pi-305221011.htm",6,"4070");
navigation[86] = new navElem(86,"TEC Druckköpfe","pi1010285085.htm",85,"887545");
navigation[87] = new navElem(87,"Tec Ersatzteile","pi-1202150049.htm",85,"22845");
navigation[88] = new navElem(88,"Zubehör TEC Drucker","pi-1142731990.htm",85,"ZUBTEC");
navigation[89] = new navElem(89,"B-SA4","pi-964222821.htm",88,"438547218");
navigation[90] = new navElem(90,"B-EV4","pi1282707814.htm",88,"6782942");
navigation[91] = new navElem(91,"B-EX4T1","pi1401501079.htm",88,"534762");
navigation[92] = new navElem(92,"Abgekündigte Produkte","pi-192143029.htm",85,"324234");
navigation[93] = new navElem(93,"Wasp Etikettendrucker","pi1809258794.htm",6,"39853");
navigation[94] = new navElem(94,"Zebra Etikettendrucker","pi1056188611.htm",6,"4080");
navigation[95] = new navElem(95,"Zubehör Zebra Drucker","pi256531528.htm",94,"ZubZeDr");
navigation[96] = new navElem(96,"S4M","pi-610060372.htm",95,"246178");
navigation[97] = new navElem(97,"G-Series","pi1862140534.htm",95,"67893");
navigation[98] = new navElem(98,"Xi4","pi1445464466.htm",95,"65152");
navigation[99] = new navElem(99,"Druckköpfe für Zebra Drucker","pi-113087775.htm",94,"zebraprint");
navigation[100] = new navElem(100,"EOL","pi1465594583.htm",94,"343762");
navigation[101] = new navElem(101,"Drucker - mobil","pi1115743387.htm",null,"107");
navigation[102] = new navElem(102,"Datamax O&#0039;Neil","pi-920438352.htm",101,"43252");
navigation[103] = new navElem(103,"Zubehör Apex","pi-992812082.htm",102,"358129");
navigation[104] = new navElem(104,"Zubehör RL4","pi-1112942895.htm",102,"1121");
navigation[105] = new navElem(105,"Zubehör Compact4","pi883922031.htm",102,"22342");
navigation[106] = new navElem(106,"Extech","pi-573869760.htm",101,"extech");
navigation[107] = new navElem(107,"Abgekündigte Produkte","pi845189670.htm",106,"2346789");
navigation[108] = new navElem(108,"Zubehör Extech","pi-729651135.htm",107,"ExtZub");
navigation[109] = new navElem(109,"Paxar","pi1127486912.htm",101,"MDPaxar");
navigation[110] = new navElem(110,"Zubehör 6020","pi-1730788363.htm",109,"51451");
navigation[111] = new navElem(111,"Paxar Pathfinder Etiketten","pi-591395642.htm",109,"3783");
navigation[112] = new navElem(112,"Toshiba Tec","pi1127747488.htm",101,"334343");
navigation[113] = new navElem(113,"Intermec","pi-1590862300.htm",101,"003857");
navigation[114] = new navElem(114,"Zubehör","pi-799330817.htm",113,"3246782");
navigation[115] = new navElem(115,"Zebra","pi820812479.htm",101,"921845");
navigation[116] = new navElem(116,"Zebra RW Zubehör","pi-1250591790.htm",115,"88454");
navigation[117] = new navElem(117,"Zebra QL Zubehör","pi1988127814.htm",115,"223789");
navigation[118] = new navElem(118,"Sato","pi-716954310.htm",101,"274829");
navigation[119] = new navElem(119,"Aufwickler / Spender","pi-94222765.htm",null,"110");
navigation[120] = new navElem(120,"Sato","pi-410673419.htm",119,"SATO Spend");
navigation[121] = new navElem(121,"Zubehör S70","pi-1786471183.htm",120,"45621");
navigation[122] = new navElem(122,"Labelmate","pi1068538631.htm",119,"Labelmate");
navigation[123] = new navElem(123,"Zubehör LabelMate","pi1073396180.htm",122,"zub-labelm");
navigation[124] = new navElem(124,"EOL","pi660471863.htm",122,"4378348");
navigation[125] = new navElem(125,"OPAL","pi-812720679.htm",119,"opalsepnd");
navigation[126] = new navElem(126,"Abgekündigte Produkte","pi-283613189.htm",125,"9927");
navigation[127] = new navElem(127,"Kartendrucker","pi-2076905832.htm",null,"108");
navigation[128] = new navElem(128,"I&A","pi716464048.htm",127,"212");
navigation[129] = new navElem(129,"Zubehör","pi-1694253714.htm",128,"99651");
navigation[130] = new navElem(130,"DataCard","pi1165222204.htm",127,"66874");
navigation[131] = new navElem(131,"SP25","pi-1364116902.htm",130,"18415");
navigation[132] = new navElem(132,"SP35/55","pi-170537498.htm",130,"3354");
navigation[133] = new navElem(133,"SD260","pi114263349.htm",130,"98454");
navigation[134] = new navElem(134,"SD360","pi1915076039.htm",130,"38");
navigation[135] = new navElem(135,"Plastikkarten","pi1853862824.htm",130,"892");
navigation[136] = new navElem(136,"Zebra","pi1069151897.htm",127,"ZebraKarte");
navigation[137] = new navElem(137,"Zubehör Zebra Kartendrucker","pi-1333932314.htm",136,"ZubZebKart");
navigation[138] = new navElem(138,"EOL","pi1980652049.htm",137,"343452435");
navigation[139] = new navElem(139,"Farbbänder","pi-1398251078.htm",137,"84357");
navigation[140] = new navElem(140,"Plastikkarten","pi-303674957.htm",137,"32563752");
navigation[141] = new navElem(141,"Diverses","pi-1088760019.htm",137,"3452345");
navigation[142] = new navElem(142,"Zubehör Zebra ZXP 3","pi2053528827.htm",136,"12930");
navigation[143] = new navElem(143,"PVC Karten","pi1315462707.htm",127,"7839");
navigation[144] = new navElem(144,"EOL","pi1824670101.htm",127,"34782942");
navigation[145] = new navElem(145,"Etiketten","pi1055235114.htm",null,"109");
navigation[146] = new navElem(146,"Thermodirekt","pi1073936420.htm",145,"TD");
navigation[147] = new navElem(147,"Druckertyp A","pi-62084366.htm",146,"DTA");
navigation[148] = new navElem(148,"Druckertyp O und I","pi-1114670965.htm",146,"TDOI");
navigation[149] = new navElem(149,"Thermotransfer","pi1081472597.htm",145,"TTR");
navigation[150] = new navElem(150,"Druckertyp A","pi-465235344.htm",149,"TTRA");
navigation[151] = new navElem(151,"Druckertyp O","pi-1699422799.htm",149,"TTRO");
navigation[152] = new navElem(152,"Druckertyp I","pi1748499998.htm",149,"TTRI");
navigation[153] = new navElem(153,"Preiswerte Restposten","pi1204011994.htm",145,"252525");
navigation[154] = new navElem(154,"InkJet Etiketten","pi-1871890296.htm",145,"20247");
navigation[155] = new navElem(155,"Monarch Pathfinder Etiketten","pi891163889.htm",145,"2284");
navigation[156] = new navElem(156,"Zebra Media","pi1476616123.htm",145,"36723");
navigation[157] = new navElem(157,"Farbbänder","pi2121895884.htm",null,"93782");
navigation[158] = new navElem(158,"Barcodescanner","pi-707641671.htm",null,"100");
navigation[159] = new navElem(159,"Zubehör","pi202138200.htm",158,"1130");
navigation[160] = new navElem(160,"Decoder","pi-1061916533.htm",159,"101");
navigation[161] = new navElem(161,"Zubehör zu Decoder","pi-2103842016.htm",160,"ZubDecod");
navigation[162] = new navElem(162,"Nach Hersteller","pi810847760.htm",158,"74151");
navigation[163] = new navElem(163,"Baracoda","pi1125492472.htm",162,"1000");
navigation[164] = new navElem(164,"Zubehör Baracoda Bluetooth Pen","pi-2051019467.htm",163,"43328");
navigation[165] = new navElem(165,"Zubehör Baracoda OrKan","pi-1931667308.htm",163,"247823");
navigation[166] = new navElem(166,"Zubehör Baracoda Roadrunners","pi1132653774.htm",163,"24523324");
navigation[167] = new navElem(167,"Baracoda Bluetooth Dongles","pi-730237988.htm",163,"252387");
navigation[168] = new navElem(168,"Zubehör Toughrunners","pi-1454088125.htm",163,"884122");
navigation[169] = new navElem(169,"EOL","pi1203070378.htm",163,"239");
navigation[170] = new navElem(170,"Cipherlab","pi-604310635.htm",162,"85211");
navigation[171] = new navElem(171,"Zubehör Cipherlab Scanner","pi-566972622.htm",170,"34789");
navigation[172] = new navElem(172,"Datalogic","pi1061990344.htm",162,"1010");
navigation[173] = new navElem(173,"Zubehör Datalogic Scanner","pi-816500294.htm",172,"DLZubehör");
navigation[174] = new navElem(174,"Zubehör Datalogic Dragon","pi-588236096.htm",173,"9473");
navigation[175] = new navElem(175,"Zubehör vormals PSC Scanner","pi-83453114.htm",173,"9124811");
navigation[176] = new navElem(176,"Magellan 3300HSi","pi-1164808338.htm",173,"8941541");
navigation[177] = new navElem(177,"Zubehör Gryphon 4400 HC","pi-409637752.htm",173,"3423789");
navigation[178] = new navElem(178,"Datalogic Kabel","pi1080125971.htm",172,"335323");
navigation[179] = new navElem(179,"Abgekündigte Produkte","pi1106042834.htm",172,"986458");
navigation[180] = new navElem(180,"PSC","pi-170536405.htm",179,"1090");
navigation[181] = new navElem(181,"EOL","pi1114010140.htm",180,"4938437");
navigation[182] = new navElem(182,"Honeywell","pi1065346436.htm",162,"1030");
navigation[183] = new navElem(183,"Zubehör 1202g","pi-1257268122.htm",182,"245532q");
navigation[184] = new navElem(184,"Zubehör 1250g","pi1326117535.htm",182,"13244");
navigation[185] = new navElem(185,"Zubehör 1300g","pi115518105.htm",182,"23343");
navigation[186] = new navElem(186,"Zubehör MS4980","pi1142988851.htm",182,"415152");
navigation[187] = new navElem(187,"Diverses Zubehör","pi825495649.htm",182,"Zub HHP Sc");
navigation[188] = new navElem(188,"Ersatzkabel","pi1490762550.htm",182,"7784551");
navigation[189] = new navElem(189,"Abgekündigte Produkte","pi1576696236.htm",182,"3452");
navigation[190] = new navElem(190,"Intermec","pi1267678342.htm",162,"1040");
navigation[191] = new navElem(191,"Intermec Scanner Zubehör","pi1861160583.htm",190,"IntermecZu");
navigation[192] = new navElem(192,"Intermec SF51 Zubehör","pi1284098722.htm",191,"93484357");
navigation[193] = new navElem(193,"Intermec SR61 Zubehör","pi1038850060.htm",191,"36844");
navigation[194] = new navElem(194,"Intermec SR61T","pi-779290644.htm",191,"1231");
navigation[195] = new navElem(195,"Intermec SR30","pi1173565710.htm",191,"2274");
navigation[196] = new navElem(196,"EOL","pi1006595485.htm",190,"33300");
navigation[197] = new navElem(197,"Metrologic","pi1867584336.htm",162,"1050");
navigation[198] = new navElem(198,"Zubehör Metrologic Scanner","pi696756855.htm",197,"ZuebehMetr");
navigation[199] = new navElem(199,"Abgekündigte Produkte","pi-204031316.htm",197,"598454");
navigation[200] = new navElem(200,"Microscan","pi1013072144.htm",162,"1060");
navigation[201] = new navElem(201,"Zubehör Microscan Scanner","pi-675688495.htm",200,"MicrosZub");
navigation[202] = new navElem(202,"Abgekündigte Produkte","pi1309248470.htm",200,"72894");
navigation[203] = new navElem(203,"Motorola Symbol","pi1055742680.htm",162,"1110");
navigation[204] = new navElem(204,"Zubehör","pi-849934343.htm",203,"ZubSySca");
navigation[205] = new navElem(205,"Synapsen","pi-927651053.htm",204,"24782");
navigation[206] = new navElem(206,"Abgekündigte Produkte","pi1526978577.htm",204,"42342");
navigation[207] = new navElem(207,"OPAL","pi-589818613.htm",162,"1070");
navigation[208] = new navElem(208,"Scanner OPAL Zubehör","pi1909532470.htm",207,"OPALZube");
navigation[209] = new navElem(209,"EOL","pi1161606059.htm",207,"38384");
navigation[210] = new navElem(210,"Opticon","pi1073509370.htm",162,"1080");
navigation[211] = new navElem(211,"Zubehör Opticon Scanner","pi-1408041229.htm",210,"ZubOptSc");
navigation[212] = new navElem(212,"EOL","pi-532414441.htm",210,"358372");
navigation[213] = new navElem(213,"Socket","pi-165870296.htm",162,"1100");
navigation[214] = new navElem(214,"EOL","pi1150444226.htm",213,"33399");
navigation[215] = new navElem(215,"Unitech ","pi1075638661.htm",162,"1120");
navigation[216] = new navElem(216,"Zubehör Unitech Scanner","pi-833359262.htm",215,"ZubUniScan");
navigation[217] = new navElem(217,"Abgekündite Produkte","pi1587712225.htm",215,"7389");
navigation[218] = new navElem(218,"Txcom","pi1092660192.htm",162,"TxCom");
navigation[219] = new navElem(219,"Nach Anwendung","pi-1865609347.htm",158,"44");
navigation[220] = new navElem(220,"Büro","pi-566884614.htm",219,"4546451");
navigation[221] = new navElem(221,"1D Barcodes","pi688559504.htm",220,"5412");
navigation[222] = new navElem(222,"Kabelgebunden","pi-1328473767.htm",221,"4851");
navigation[223] = new navElem(223,"Funk / Bluetooth","pi1254582950.htm",221,"45115");
navigation[224] = new navElem(224,"2D Barcodes","pi1295755857.htm",220,"556252");
navigation[225] = new navElem(225,"Kabelgebunden","pi-306072002.htm",224,"6662");
navigation[226] = new navElem(226,"Funk / Bluetooth","pi-1370964761.htm",224,"8854");
navigation[227] = new navElem(227,"Retail","pi-163326477.htm",219,"4411");
navigation[228] = new navElem(228,"Einbauscanner","pi979297071.htm",227,"451");
navigation[229] = new navElem(229,"Standscanner","pi-1551226556.htm",227,"4121");
navigation[230] = new navElem(230,"Handscanner","pi-581150475.htm",227,"53656");
navigation[231] = new navElem(231,"Industrie","pi971304376.htm",219,"78641");
navigation[232] = new navElem(232,"1D Barcodes","pi-213860708.htm",231,"8521");
navigation[233] = new navElem(233,"Funk / Bluetooth","pi1697848363.htm",232,"43838");
navigation[234] = new navElem(234,"Kabelgebunden","pi359121170.htm",232,"48439");
navigation[235] = new navElem(235,"2D Barcodes","pi-2002671251.htm",231,"6665");
navigation[236] = new navElem(236,"Kabelgebunden","pi-1677475485.htm",235,"1122");
navigation[237] = new navElem(237,"Funk / Bluetooth","pi1982328936.htm",235,"5544");
navigation[238] = new navElem(238,"OEM Scanengines","pi1235572572.htm",219,"67892");
navigation[239] = new navElem(239,"Zubehör","pi1224656523.htm",238,"00986");
navigation[240] = new navElem(240,"iPhone / iPad","pi1283176665.htm",219,"511512");
navigation[241] = new navElem(241,"DPM (Direct Part Marking)","pi1326271117.htm",219,"12324");
navigation[242] = new navElem(242,"Mobile Computer","pi1707595571.htm",null,"102");
navigation[243] = new navElem(243,"Axiome","pi1590386983.htm",242,"2000");
navigation[244] = new navElem(244,"Zubehör Axiome Barman Laser","pi875423661.htm",243,"12321");
navigation[245] = new navElem(245,"Baracoda","pi-1408928905.htm",242,"36789");
navigation[246] = new navElem(246,"CipherLab","pi2020979338.htm",242,"2010");
navigation[247] = new navElem(247,"Zubehör zu CipherLab Terminals","pi-1679154121.htm",246,"CipherZube");
navigation[248] = new navElem(248,"CipherLab 711","pi-299029936.htm",247,"Ciph711");
navigation[249] = new navElem(249,"CipherLab 8300","pi79349585.htm",247,"Ci8300");
navigation[250] = new navElem(250,"CipherLab 8400","pi-903985732.htm",247,"6789238u");
navigation[251] = new navElem(251,"Datalogic","pi1073480405.htm",242,"2020");
navigation[252] = new navElem(252,"Zubehör Datalogic Elf","pi-683092296.htm",251,"9512");
navigation[253] = new navElem(253,"Zubehör Datalogic Falcon X3","pi1511894382.htm",251,"88247");
navigation[254] = new navElem(254,"Zubehör Datalogic Handterminals","pi-166208142.htm",251,"zhtdatalog");
navigation[255] = new navElem(255,"Zubehör Datalogic Kyman","pi395756450.htm",251,"200499");
navigation[256] = new navElem(256,"Zubehör Datalogic Skorpio","pi1781508434.htm",251,"2367z2h3");
navigation[257] = new navElem(257,"Zubehör Datalogic Memor","pi-1385758592.htm",251,"541");
navigation[258] = new navElem(258,"Zubehör Datalogic Falcon 4400","pi-1765146429.htm",251,"PSCZHT");
navigation[259] = new navElem(259,"Abgekündigte Produkte","pi1180430868.htm",251,"844818");
navigation[260] = new navElem(260,"Zubehör Datalogic Pegaso","pi136182341.htm",259,"629427");
navigation[261] = new navElem(261,"Zubehör Datalogic Jet","pi1809786264.htm",259,"43285436");
navigation[262] = new navElem(262,"Denso","pi1067942560.htm",242,"2030");
navigation[263] = new navElem(263,"Zubehör Denso BHT-400","pi706204704.htm",262,"33948");
navigation[264] = new navElem(264,"Zubehör Denso BHT-500","pi1901418509.htm",262,"267382");
navigation[265] = new navElem(265,"Zubehör Denso BHT-600","pi1497380646.htm",262,"35789");
navigation[266] = new navElem(266,"Zubehör Denso BHT-700","pi-323338998.htm",262,"2435t7ed");
navigation[267] = new navElem(267,"Zubehör Denso BHT-800","pi-2110988837.htm",262,"7289");
navigation[268] = new navElem(268,"Zubehör Denso BHT-900","pi299584512.htm",262,"8247");
navigation[269] = new navElem(269,"Zubehör DENSO Terminals","pi936228385.htm",262,"Zub DEN HT");
navigation[270] = new navElem(270,"EOL","pi-528202766.htm",262,"54393");
navigation[271] = new navElem(271,"Honeywell","pi1066121853.htm",242,"2040");
navigation[272] = new navElem(272,"Zubehör Dolphin 6000","pi1309858125.htm",271,"251");
navigation[273] = new navElem(273,"Zubehör Dolphin 6100","pi83440588.htm",271,"851510");
navigation[274] = new navElem(274,"Zubehör Dolphin 6500","pi-905021036.htm",271,"99655");
navigation[275] = new navElem(275,"Zubehör Dolphin 7600","pi-1618925339.htm",271,"65422");
navigation[276] = new navElem(276,"Zubehör Dolphin 7800","pi390133568.htm",271,"14253");
navigation[277] = new navElem(277,"Zubehör Dolphin 7900","pi-1482298080.htm",271,"235340");
navigation[278] = new navElem(278,"Zubehör Dolphin 9700","pi-1422607078.htm",271,"383938");
navigation[279] = new navElem(279,"Zubehör Dolphin 99ex","pi-2110102503.htm",271,"3453829");
navigation[280] = new navElem(280,"Abgekündigte Produkte","pi-1273030672.htm",271,"47247");
navigation[281] = new navElem(281,"Zubehör Dolphin 7850","pi2028615655.htm",280,"4543");
navigation[282] = new navElem(282,"Zubehör Optimus 5700","pi-702739205.htm",280,"992474");
navigation[283] = new navElem(283,"Diverses Zubehör","pi-1554246150.htm",282,"Zub HHP MD");
navigation[284] = new navElem(284,"Intermec","pi-1911423847.htm",242,"2050");
navigation[285] = new navElem(285,"Zubehör Intermec 70 Series","pi-1910517781.htm",284,"82478");
navigation[286] = new navElem(286,"Zubehör Intermec Barcode Terminals","pi1055162477.htm",284,"200111");
navigation[287] = new navElem(287,"Zubehör Intermec CK60","pi-1755274565.htm",286,"2952");
navigation[288] = new navElem(288,"Zubehör Intermec CN3 / CN4","pi-402465396.htm",286,"3435783");
navigation[289] = new navElem(289,"Zubehör Intermec CK3","pi-1419565725.htm",286,"2789");
navigation[290] = new navElem(290,"Zubehör Intermec CN50","pi-356908706.htm",286,"2452");
navigation[291] = new navElem(291,"Zubehör Intermec CS40","pi1096503395.htm",286,"156780");
navigation[292] = new navElem(292,"Abgekündigtes Zubehör","pi-1889106862.htm",286,"4348372");
navigation[293] = new navElem(293,"Zubehör Intermec CN30","pi-1267095271.htm",292,"29843");
navigation[294] = new navElem(294,"Zubehör Intermec CN2","pi17569067.htm",293,"54543573");
navigation[295] = new navElem(295,"Abgekündigte Produkte","pi115248399.htm",284,"567892");
navigation[296] = new navElem(296,"LXE","pi-1938962625.htm",242,"2993");
navigation[297] = new navElem(297,"Zubehör MX8","pi1127779979.htm",296,"478");
navigation[298] = new navElem(298,"Zubehör MX7","pi-971148553.htm",296,"4985372");
navigation[299] = new navElem(299,"Zubehör MX2","pi-1948105321.htm",296,"22437");
navigation[300] = new navElem(300,"Zubehör Tecton","pi586543580.htm",296,"3891");
navigation[301] = new navElem(301,"Metrologic","pi1132220087.htm",242,"472652");
navigation[302] = new navElem(302,"Motorola","pi1056031193.htm",242,"2090");
navigation[303] = new navElem(303,"Zubehör","pi1038616870.htm",302,"SymbZbHT");
navigation[304] = new navElem(304,"Motorola ES400","pi1021513272.htm",303,"9615");
navigation[305] = new navElem(305,"Motorola MC2100","pi-810756118.htm",303,"243561");
navigation[306] = new navElem(306,"Motorola MC50","pi1400269860.htm",303,"123123");
navigation[307] = new navElem(307,"Motorola MC55","pi235534756.htm",303,"8441");
navigation[308] = new navElem(308,"Motorola MC70 / MC75","pi1982352239.htm",303,"39372");
navigation[309] = new navElem(309,"Motorola MC3X00","pi85798590.htm",303,"1132");
navigation[310] = new navElem(310,"Motorolal MC1000","pi-286714655.htm",303,"582452");
navigation[311] = new navElem(311,"Motorola MC9500","pi-1674204209.htm",303,"542");
navigation[312] = new navElem(312,"Motorola MC9090","pi1277106690.htm",303,"9478329");
navigation[313] = new navElem(313,"Motorola MC9190","pi1310378022.htm",303,"6278e2");
navigation[314] = new navElem(314,"Symbol CS3000","pi1286436633.htm",303,"99654");
navigation[315] = new navElem(315,"Diverses Zubehör","pi-66137624.htm",303,"234");
navigation[316] = new navElem(316,"Abgekündigte Produkte","pi1108135248.htm",302,"r5328572");
navigation[317] = new navElem(317,"Motorola MC35","pi-1825277502.htm",316,"87455");
navigation[318] = new navElem(318,"Nordic ID","pi1066231004.htm",242,"2060");
navigation[319] = new navElem(319,"Zubehör R601","pi-795609961.htm",318,"PiccoLinkZ");
navigation[320] = new navElem(320,"Zubehör Morphic","pi-2109521449.htm",318,"378");
navigation[321] = new navElem(321,"Opticon","pi-1866969281.htm",242,"2070");
navigation[322] = new navElem(322,"Diverses Zubehör","pi-598177772.htm",321,"zuboptht");
navigation[323] = new navElem(323,"Zubehör H16","pi1367735373.htm",321,"785185");
navigation[324] = new navElem(324,"Zubehör H21","pi-1477622934.htm",321,"33281");
navigation[325] = new navElem(325,"Zubehör OPN2002","pi1292250365.htm",321,"134r27");
navigation[326] = new navElem(326,"Abgekündigte Produkte","pi633104917.htm",321,"43232");
navigation[327] = new navElem(327,"Zubehör H19","pi1435953680.htm",326,"7718");
navigation[328] = new navElem(328,"Panmobil","pi1182413045.htm",242,"252484");
navigation[329] = new navElem(329,"Zubehör","pi-1858923770.htm",328,"264");
navigation[330] = new navElem(330,"smartScanndy","pi-1936606193.htm",329,"38382");
navigation[331] = new navElem(331,"Scanndy","pi-44735431.htm",329,"5848");
navigation[332] = new navElem(332,"Pidion","pi-1694943005.htm",242,"6789");
navigation[333] = new navElem(333,"Zubehör Pidion 5000","pi-2145978987.htm",332,"23454");
navigation[334] = new navElem(334,"Abgekündigte Produkte","pi2027950436.htm",332,"854151");
navigation[335] = new navElem(335,"skeye. by Höft & Wessel","pi-545437044.htm",242,"411");
navigation[336] = new navElem(336,"Zubehör Skeye.dart","pi71479135.htm",335,"323789");
navigation[337] = new navElem(337,"Zubehör Skeye.e-motion","pi298731803.htm",335,"1241");
navigation[338] = new navElem(338,"Zubehör Skeye.integral","pi-918789382.htm",335,"54312");
navigation[339] = new navElem(339,"Psion","pi1245417828.htm",242,"99965");
navigation[340] = new navElem(340,"Zubehör Ikon","pi330282379.htm",339,"8837");
navigation[341] = new navElem(341,"Zubehör Workabout","pi-68710578.htm",339,"2294");
navigation[342] = new navElem(342,"Zubehör Neo","pi-1827826704.htm",339,"951");
navigation[343] = new navElem(343,"Zubehör Psion EP10","pi1355497809.htm",339,"3378930");
navigation[344] = new navElem(344,"Zubehör Omnii XT10","pi1759419690.htm",339,"882342");
navigation[345] = new navElem(345,"Unitech","pi-2085119427.htm",242,"2100");
navigation[346] = new navElem(346,"Zubehör HT630","pi982870577.htm",345,"6728");
navigation[347] = new navElem(347,"Zubehör HT550","pi-8527618.htm",345,"r7uj");
navigation[348] = new navElem(348,"Zubehör HT680","pi780328866.htm",345,"9965");
navigation[349] = new navElem(349,"Zubehör PA500 II","pi-2062722512.htm",345,"2748q");
navigation[350] = new navElem(350,"Zubehör PA600","pi1923994856.htm",345,"74145");
navigation[351] = new navElem(351,"Zubehör PA690","pi1034732881.htm",345,"1890");
navigation[352] = new navElem(352,"Software","pi1068201764.htm",345,"ZubUnitter");
navigation[353] = new navElem(353,"Abgekündigte Produkte","pi527774501.htm",345,"8842");
navigation[354] = new navElem(354,"Zubehör PA500","pi1233048577.htm",353,"67824");
navigation[355] = new navElem(355,"Mobile Arbeitsplätze","pi1252308184.htm",null,"968541");
navigation[356] = new navElem(356,"Robuste Tablet PC","pi1014171131.htm",null,"104");
navigation[357] = new navElem(357,"AdsTec","pi-96499680.htm",356,"84545");
navigation[358] = new navElem(358,"Zubehör TT13","pi-1812607630.htm",357,"999654");
navigation[359] = new navElem(359,"Dlog","pi1789189384.htm",356,"5431");
navigation[360] = new navElem(360,"Dlog SA10 Zubehör","pi-66925381.htm",359,"3789");
navigation[361] = new navElem(361,"Motorola","pi647269262.htm",356,"7385");
navigation[362] = new navElem(362,"Zubehör ET1","pi1325857476.htm",361,"1123");
navigation[363] = new navElem(363,"Fahrzeug/Industrie PC","pi892313821.htm",null,"103");
navigation[364] = new navElem(364,"Dlog","pi1321254620.htm",363,"1235");
navigation[365] = new navElem(365,"Zubehör  ITC 7","pi1673836306.htm",364,"2678");
navigation[366] = new navElem(366,"ADS Tec","pi-685550509.htm",363,"6851");
navigation[367] = new navElem(367,"Optionen","pi-876214385.htm",366,"88412");
navigation[368] = new navElem(368,"EOL","pi1574325385.htm",366,"99634");
navigation[369] = new navElem(369,"Intermec Fahrzeugterminal","pi1069408269.htm",363,"ImecFzTer");
navigation[370] = new navElem(370,"Intermec CV30 Zubehör","pi-1541893539.htm",369,"68641");
navigation[371] = new navElem(371,"Intermec CV60 Zubehör","pi1307316298.htm",369,"ZubImFhz");
navigation[372] = new navElem(372,"EOL","pi1883634194.htm",369,"23456");
navigation[373] = new navElem(373,"PSC Fahrzeugterminal","pi1068539511.htm",363,"PSCFRZTerm");
navigation[374] = new navElem(374,"Zubehör PSC Fahrzeugterminal","pi1797965036.htm",373,"ZubPSCFT");
navigation[375] = new navElem(375,"EOL","pi-462365985.htm",373,"9003483");
navigation[376] = new navElem(376,"Motorola Fahrzeugterminals","pi1164979031.htm",363,"999433");
navigation[377] = new navElem(377,"Zubehör Symbol VC5090","pi1232420210.htm",376,"58754");
navigation[378] = new navElem(378,"Kabel","pi-514836213.htm",377,"9437423");
navigation[379] = new navElem(379,"EOL","pi1777430837.htm",363,"33953");
navigation[380] = new navElem(380,"Walkabout Terminals","pi1082115467.htm",379,"WalkAboutF");
navigation[381] = new navElem(381,"Zubehör Walkabout","pi229677936.htm",380,"ZubWalkabo");
navigation[382] = new navElem(382,"Pick by Voice","pi1190101874.htm",null,"992347");
navigation[383] = new navElem(383,"TopSystem","pi1761435294.htm",382,"992437");
navigation[384] = new navElem(384,"Zubehör","pi-740634574.htm",383,"34394");
navigation[385] = new navElem(385,"Wireless Lan","pi-903490342.htm",null,"105");
navigation[386] = new navElem(386,"Cisco Funk Infrastruktur","pi1062411689.htm",385,"3010");
navigation[387] = new navElem(387,"Zubehör Cisco","pi1081937967.htm",386,"ZubehörCis");
navigation[388] = new navElem(388,"Motorola Wireless","pi1061898549.htm",385,"3040");
navigation[389] = new navElem(389,"Antennen","pi1990425602.htm",388,"345632");
navigation[390] = new navElem(390,"Power","pi392125849.htm",388,"23425");
navigation[391] = new navElem(391,"Anderes Zubehör","pi-31900675.htm",388,"34235");
navigation[392] = new navElem(392,"Kabel und Adapter","pi995848298.htm",388,"245879");
navigation[393] = new navElem(393,"Wartung","pi-1711946075.htm",388,"423789");
navigation[394] = new navElem(394,"Abgekündigte Produkte","pi-597533004.htm",388,"22231");
navigation[395] = new navElem(395,"Software","pi-1877724458.htm",null,"1");
navigation[396] = new navElem(396,"Denso Lösungen","pi1604449326.htm",395,"DensoSW");
navigation[397] = new navElem(397,"Entwicklungstools","pi187392913.htm",395,"37942");
navigation[398] = new navElem(398,"MCL für Symbol","pi1082453595.htm",397,"MCLSymbol");
navigation[399] = new navElem(399,"MCL für Intermec","pi1077533305.htm",397,"MCLImec");
navigation[400] = new navElem(400,"Etikettensoftware","pi-1213232136.htm",395,"3739");
navigation[401] = new navElem(401,"Intermec Software","pi1590562951.htm",400,"IntermSoft");
navigation[402] = new navElem(402,"Abgekündigte Produkte","pi2098417481.htm",401,"2378902");
navigation[403] = new navElem(403,"Nicelabel","pi2072433701.htm",400,"72849");
navigation[404] = new navElem(404,"SATO Software","pi-2135346273.htm",400,"7");
navigation[405] = new navElem(405,"Teklynx Software","pi304508587.htm",400,"TeklynxSW");
navigation[406] = new navElem(406,"Seagull Scientific","pi-39244125.htm",400,"SeagullSof");
navigation[407] = new navElem(407,"Printer Add-Ons","pi1296468785.htm",406,"27582");
navigation[408] = new navElem(408,"Updates","pi1295861341.htm",406,"2844");
navigation[409] = new navElem(409,"Update V.9.3 nach 9.4","pi-1290742920.htm",408,"151411");
navigation[410] = new navElem(410,"Basic Edition","pi-160709367.htm",409,"11313");
navigation[411] = new navElem(411,"Professional Edition","pi-113788778.htm",409,"11314");
navigation[412] = new navElem(412,"Enterprise & Automation Edition","pi-1776142753.htm",409,"11315");
navigation[413] = new navElem(413,"Update V.9.2 nach 9.4","pi706496747.htm",408,"52142");
navigation[414] = new navElem(414,"Basic Edition","pi-693723227.htm",413,"4251");
navigation[415] = new navElem(415,"Professional Edition","pi-554152446.htm",413,"4356278");
navigation[416] = new navElem(416,"Enterprise & Automation Edition","pi496822452.htm",413,"5142");
navigation[417] = new navElem(417,"Update V.9.1 nach 9.4","pi-1653508004.htm",408,"42378");
navigation[418] = new navElem(418,"Basic Edition","pi2001972224.htm",417,"13");
navigation[419] = new navElem(419,"Professional Edition","pi641547265.htm",417,"462");
navigation[420] = new navElem(420,"Enterprise & Automation Edition","pi1044087387.htm",417,"3827");
navigation[421] = new navElem(421,"Abgekündigte Produkte","pi1274101236.htm",406,"64151");
navigation[422] = new navElem(422,"Zebra","pi1276505209.htm",400,"8411845");
navigation[423] = new navElem(423,"Naurtech Terminalemulationen","pi1077570072.htm",395,"Naurtech");
navigation[424] = new navElem(424,"OPAL Software","pi1113292565.htm",395,"OPAL-SW");
navigation[425] = new navElem(425,"Kartendrucksoftware","pi1025449680.htm",395,"35364");
navigation[426] = new navElem(426,"CardFive","pi-317891539.htm",425,"CardFive");
navigation[427] = new navElem(427,"Wasp","pi-775715708.htm",395,"Wasp");
navigation[428] = new navElem(428,"SAP R/3","pi1194508380.htm",395,"220");
navigation[429] = new navElem(429,"LP MobileGrafix","pi1190467866.htm",428,"29274");
navigation[430] = new navElem(430,"SAP Integration","pi489807263.htm",428,"27892");
navigation[431] = new navElem(431,"SAP Lösungen","pi1911698775.htm",428,"89945141");
navigation[432] = new navElem(432,"RFID Transponder","pi-471935354.htm",null,"113");
navigation[433] = new navElem(433,"Transponder 125KHz","pi1482989776.htm",432,"SokymatTr");
navigation[434] = new navElem(434,"Transponder 13.56MHz","pi1113983952.htm",432,"Transpo_13");
navigation[435] = new navElem(435,"RFID Leser/Schreiber","pi-966256241.htm",null,"114");
navigation[436] = new navElem(436,"RFID Transponder Leser / Schreiber","pi1077213129.htm",435,"GISLeser");
navigation[437] = new navElem(437,"Zubehör","pi896547444.htm",436,"GISTRZUB");
navigation[438] = new navElem(438,"Dienstleistungen","pi1149685833.htm",null,"118");

// getNavElementByCatID
function getNavElementByCatID(categoryId){
	for(var i=0; i<navigation.length; i++){
		if(navigation[i].categoryId==categoryId){
			return(navigation[i]);
			break;
			};
		};
		return(null);
	};
// changeLoc
function changeLoc(id,linkUrl){
	if(id!="nada"){
		xmlConfig.navIndex = id.toString();
		if(xmlConfig.getFirstItem("SearchEngine").ByCategory == "1"){
			if(id=="null") xmlConfig.getFirstItem("SearchEngine").categoryId = "null"
			else xmlConfig.getFirstItem("SearchEngine").categoryId = navigation[id].categoryId;
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = id;
			}
		else{
			xmlConfig.getFirstItem("SearchEngine").categoryId = "null";
			xmlConfig.getFirstItem("SearchEngine").categoryIndex = "null";
			};
		safeData();
		location.href = linkUrl + "?categoryId=" + id.toString();
		};
	};
// searchOnEnterNavi
function searchOnEnterNavi(){
	if(window.event.keyCode==13){
		xmlConfig.getFirstItem('SearchEngine').term=document.searchEngine.searchTerm.value;
		location.href = "search.htm";
		};
	};
// activates entries for categories
activateItem(getParameterFromURL("categoryId"));


