function cfWindowCreate(Ereignis,layoutType,myRecordId) { myWidth = 500; myHeight = 165; if (!Ereignis) var Ereignis = window.event; //alert(Ereignis.type); myDirection="left"; if (Ereignis.pageX) { //alert('FF'); myx = Ereignis.pageX; if (myx-myWidth > 0) { myx = myx-myWidth; myDirection="right"; } myy = Ereignis.pageY; if (myy-myHeight > 0) { myy = myy-myHeight; } else { myy = 0; } } else if (Ereignis.clientY) { //alert('IE'); myx = Ereignis.clientX; if (myx-myWidth > 0) { myx = myx-myWidth+document.documentElement.scrollLeft; myDirection="right"; } myy = Ereignis.clientY; if (myy-myHeight > 0) { myy = myy-myHeight+document.documentElement.scrollTop; } else { myy = 0; } } else { myx = 100; myy = 100; myDirection="right"; } if (layoutType == 'glossarEinleitung') { var windowOptions = new Object(); windowOptions.x=myx; windowOptions.y=myy; windowOptions.height=myHeight+1; windowOptions.draggable=false; windowOptions.resizable=false; windowOptions.initshow=true; windowOptions.closable=true; windowOptions.bodystyle = 'background: none;'; } myWindowId = Math.random().toString().substring(5, 10); if (typeof(myArray) == 'undefined') { myArray = new Array(); myTempLength = myArray.length; myArray[myArray.length] = 'cfWindow_' + myWindowId + '_' +layoutType + '_' + myRecordId; } else { myTempLength = myArray.length; myArray[myArray.length] = 'cfWindow_' + myWindowId + '_' +layoutType + '_' + myRecordId; } for (i=0; i= 0x2B && n <= 0x3A) { dec+=cms_decryptCharcode(n, 0x2B, 0x3A, offset); } else if (n >= 0x40 && n <= 0x5A) { dec+=cms_decryptCharcode(n, 0x40, 0x5A, offset); } else if (n >= 0x61 && n <= 0x7A) { dec+=cms_decryptCharcode(n, 0x61, 0x7A, offset); } else { dec+=s.charAt(i); } } return dec; } function cms_decryptCharcode(n,start,end,offset) { n=n+offset; if (offset > 0 && n > end) { n=start+(n-end-1); } else if (offset < 0 && n < start) { n=end-(start-n-1); } return String.fromCharCode(n); } function parseCookie(myCookie) { var myVariables = myCookie.split(";"); var returnvalue = new Array(); for(var i = 0; i <= myVariables.length; i++) { if (myVariables[i]) { thisValues = myVariables[i].split("="); thisVar = trim(thisValues[0].toLowerCase()); thisVal = trim(thisValues[1]); returnvalue[thisVar]= thisVal; } } return returnvalue; } var ccErrorNo = 0; var ccErrors = new Array () ccErrors [0] = "Unknown card type"; ccErrors [1] = "No card number provided"; ccErrors [2] = "Credit card number is in invalid format"; ccErrors [3] = "Credit card number is invalid"; ccErrors [4] = "Credit card number has an inappropriate number of digits"; function checkCreditCard (cardnumber, cardname) { // Array to hold the permitted card characteristics var cards = new Array(); // Define the cards we support. You may add addtional card types. // Name: As in the selection box of the form - must be same as user's // Length: List of possible valid lengths of the card number for the card // prefixes: List of possible prefixes for the card // checkdigit Boolean to say whether there is a check digit cards [0] = {name: "Visa", length: "13,16", prefixes: "4", checkdigit: true}; cards [1] = {name: "MasterCard", length: "16", prefixes: "51,52,53,54,55", checkdigit: true}; cards [2] = {name: "DinersClub", length: "14,16", prefixes: "300,301,302,303,304,305,36,38,55", checkdigit: true}; cards [3] = {name: "CarteBlanche", length: "14", prefixes: "300,301,302,303,304,305,36,38", checkdigit: true}; cards [4] = {name: "AmEx", length: "15", prefixes: "34,37", checkdigit: true}; cards [5] = {name: "Discover", length: "16", prefixes: "6011,650", checkdigit: true}; cards [6] = {name: "JCB", length: "15,16", prefixes: "3,1800,2131", checkdigit: true}; cards [7] = {name: "enRoute", length: "15", prefixes: "2014,2149", checkdigit: true}; cards [8] = {name: "Solo", length: "16,18,19", prefixes: "6334, 6767", checkdigit: true}; cards [9] = {name: "Switch", length: "16,18,19", prefixes: "4903,4905,4911,4936,564182,633110,6333,6759", checkdigit: true}; cards [10] = {name: "Maestro", length: "16", prefixes: "5020,6", checkdigit: true}; cards [11] = {name: "VisaElectron", length: "16", prefixes: "417500,4917,4913", checkdigit: true}; // Establish card type var cardType = -1; for (var i=0; i= 0; i--) { // Extract the next digit and multiply by 1 or 2 on alternative digits. calc = Number(cardNo.charAt(i)) * j; // If the result is in two digits add 1 to the checksum total if (calc > 9) { checksum = checksum + 1; calc = calc - 10; } // Add the units element to the checksum total checksum = checksum + calc; // Switch the value of j if (j ==1) {j = 2} else {j = 1}; } // All done - if checksum is divisible by 10, it is a valid modulus 10. // If not, report an error. if (checksum % 10 != 0) { ccErrorNo = 3; return false; } } // The following are the card-specific checks we undertake. var LengthValid = false; var PrefixValid = false; var undefined; // We use these for holding the valid lengths and prefixes of a card type var prefix = new Array (); var lengths = new Array (); // Load an array with the valid prefixes for this card prefix = cards[cardType].prefixes.split(","); // Now see if any of them match what we have in the card number for (i=0; i 0) { try { parent.frames.pageinfo.location.href="/admin/cms/modCms.cfm?action=pageinfo&page=" + pageId; parent.frames.footer.location.href="/cms/cmsAdmin/system/openEditModeElementFooter.cfm?page=" + pageId; } catch (e) {} } } function updateWMTT(e) { try { x=(document.all) ? window.event.x + document.documentElement.scrollLeft + document.getElementsByTagName("div")[1].scrollLeft: e.pageX; y=(document.all) ? window.event.y + document.documentElement.scrollTop + document.getElementsByTagName("div")[1].scrollTop: e.pageY; if (wmtt != null) { wmtt.style.left=(x - 150) + "px"; wmtt.style.top=(y + 20) + "px"; } } catch(e) { } } function showTT(id) { wmtt=document.getElementById(id); wmtt.style.display="block" } function hideTT() { wmtt.style.display="none"; } function cms_showpic(file,width,height,scrollbar) { var scroll = "no"; if(!cms_showpic.arguments[1]) { width=""; } if(!cms_showpic.arguments[2]) { height=""; } if(cms_showpic.arguments[1] || cms_showpic.arguments[2]) { scroll="yes"; } //Scrollbars "yes" OR "no" if(cms_showpic.arguments[3]) { var scroll = scrollbar; } //Bildgrösse bekannt lenWidth = width.replace(/\r/g, " "); lenHeight = height.replace(/\r/g, " "); //Bildpfad speichern path = "http://www.brother.de/cms/cmsAdmin/modules/popup.cfm?picfile="+escape(file); //Breite und Höhe wird übergeben, sofern vorhanden if (lenWidth != '' && lenHeight != '') { path = path+"&width="+width+"&height="+height; } var picwindow=window.open(path, "picwindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scroll + ",resizable=yes,top=50,left=50"); picwindow.focus(); } function trim(item) { return item.replace(/^\s*(\b.*\b|)\s*$/, '$1'); } function isdate(datum) { date = trim(datum); if (date.length > 0) { if (date.search(/\d\d.\d\d.\d\d/) != -1 || date.search(/\d\d.\d\d.\d\d\d\d/) != -1 || date.search(/\d.\d.\d\d/) != -1 || date.search(/\d.\d.\d\d\d\d/) != -1 || date.search(/\d\d.\d.\d\d/) != -1 || date.search(/\d\d.\d.\d\d\d\d/) != -1 || date.search(/\d.\d\d.\d\d/) != -1 || date.search(/\d.\d\d.\d\d\d\d/) != -1) { dDate = new Date(); iYear = dDate.getFullYear(); if (iYear == "2000") { isLeapyear = false; } else { leapyear = iYear / 4; calc = 4 * leapyear; if (calc == iYear) { isLeapyear = true; } else { isLeapyear = false; } } aDate = date.split("."); iMonth = 1 * aDate[1]; iDay = 1 * aDate[0]; switch(iMonth) { case 1: iDayCount = 31; break; case 2: if (isLeapyear == true) { iDayCount = 29; } else { iDayCount = 28; } break; case 3: iDayCount = 31; break; case 4: iDayCount = 30; break; case 5: iDayCount = 31; break; case 6: iDayCount = 30; break; case 7: iDayCount = 31; break; case 8: iDayCount = 31; break; case 9: iDayCount = 30; break; case 10: iDayCount = 31; break; case 11: iDayCount = 30; break; case 12: iDayCount = 31; break; } if (iDay >= 1 && iDay <= iDayCount) { return true; } else { return false; } } else { return false; } } else { return false; } } function ismail(mail) { var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; if (filter.test(mail)) { return true; } else { return false; } } function cms_reload() { location.reload(); } function cms_popup(Ziel,Breite,Hoehe,Status,Toolbar,Location,Menu) { popup=window.open(Ziel,"PopUp","status=" + Status + ",toolbar=" + Toolbar + ",location=" + Location + ",menu=" + Menu + ",width=" + Breite + ",height=" + Hoehe + ",left=" + (screen.width - Breite) / 2 + ",top=" + (screen.height - Hoehe) / 2); popup.focus(); } function cm_bwcheck(){ this.ver=navigator.appVersion this.agent=navigator.userAgent.toLowerCase() this.dom=document.getElementById?1:0 this.op5=(this.agent.indexOf("opera 5")>-1 || this.agent.indexOf("opera/5")>-1) && window.opera this.op6=(this.agent.indexOf("opera 6")>-1 || this.agent.indexOf("opera/6")>-1) && window.opera this.ie5 = (this.agent.indexOf("msie 5")>-1 && !this.op5 && !this.op6) this.ie55 = (this.ie5 && this.agent.indexOf("msie 5.5")>-1) this.ie6 = (this.agent.indexOf("msie 6")>-1 && !this.op5 && !this.op6) this.ie4=(this.agent.indexOf("msie")>-1 && document.all &&!this.op5 &&!this.op6 &&!this.ie5&&!this.ie6) this.ie = (this.ie4 || this.ie5 || this.ie6) this.mac=(this.agent.indexOf("mac")>-1) this.ns6=(this.agent.indexOf("gecko")>-1 || window.sidebar) this.ns4=(!this.dom && document.layers)?1:0; this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.op5 || this.op6) this.usedom= this.ns6//Use dom creation this.reuse = this.ie||this.usedom //Reuse layers this.px=this.dom&&!this.op5?"px":"" return this } var bw=new cm_bwcheck(); actStatus=0; function setStatus(s) { if(s==0) { actStatus=0; javascript:window.setTimeout("toggleSelect('10','10','10','10')",1000); } if(s==1) { actStatus=1; javascript:toggleSelect('10','10','10','10'); } } function toggleSelect(x,y,w,h) { var appVer = navigator.appVersion.toLowerCase(); var iePos = appVer.indexOf('msie'); if (iePos !=-1) { var is_minor = parseFloat(appVer.substring(iePos+5,appVer.indexOf(';',iePos))); var is_major = parseInt(is_minor); } if (navigator.appName.substring(0,9) == "Microsoft") { // Check if IE version is 6 or older if (is_major <= 6) { var selx,sely,selw,selh,i var sel=document.getElementsByTagName("SELECT") for(i=0;ix && selxy && sely 1; i--) { document.forms[2].Modell.options[document.forms[2].Modell.length-1] = null; } if (thisValue == "Drucker") { thisValues = new Array("16520¬MP-21C","16521¬MP-21CDX","16823¬WL-660","16824¬HL-630","16826¬HL-660","16828¬HL-1260","16835¬HL-1260e","16836¬HL-720","16837¬HL-730","16838¬HL-760","16839¬HL-1060","16840¬HL-730plus","16849¬HL-1660e","16851¬HL-2060","16854¬HL-1660","16861¬HL-2400C","16863¬HL-2400Ce","16865¬HL-3400CN","16869¬HL-P2000","16870¬HL-820","16871¬HL-1040","16872¬HL-1050","16873¬HL-1070","16874¬HL-1030","16875¬HL-1240","16876¬HL-1250","16877¬HL-1270N","16879¬HL-1650","16880¬HL-1670N","alt_hj100¬HJ-100","alt_hj100i¬HJ-100i","alt_hj400¬HJ-400","alt_hj770¬HJ-770","alt_hl10h¬HL-10h","alt_hl10ps¬HL-10PS","alt_hl10v¬HL-10V","alt_hl4¬HL-4","alt_hl4ps¬HL-4PS","alt_hl4v¬HL-4V","alt_hl4ve¬HL-4Ve","alt_hl6¬HL-6","alt_hl6v¬HL-6V","alt_hl8¬HL-8","alt_hl8d¬HL-8D","alt_hl8e¬HL-8e","alt_hl8ps¬HL-8PS","alt_hl8v¬HL-8V","alt_m1009¬M-1009","alt_m1109¬M-1109","alt_m1209¬M-1209","alt_m1309¬M-1309","alt_m1324l¬M-1324L","alt_m1409¬M-1409","alt_m1509¬M-1509","alt_m1609¬M-1609","alt_m1709¬M-1709","alt_m1724l¬M-1724L","alt_m1818¬M-1818","alt_m1824l¬M-1824L","alt_m1918¬M-1918","alt_m1924L¬M-1924L","alt_m2024l¬M-2024L","alt_m2518¬M-2518","alt_m2524l¬M-2524L","alt_m3524l¬M-3524L","alt_m4018¬M-4018","alt_mc3000¬MC-3000","alt_twr56¬Twinwriter-5_6","HL1230ZG1¬HL-1230","HL1430ZG1¬HL-1430","HL1440ZG1¬HL-1440","HL1450ZG1¬HL-1450","HL1470NZG1¬HL-1470N","HL1850ZG1¬HL-1850","HL1870NZG1¬HL-1870N","HL2030G1¬HL-2030","HL2040G1¬HL-2040","HL2070NG1¬HL-2070N","HL2140G1¬HL-2140","HL2150NG1¬HL-2150N","HL2170WG1¬HL-2170W","HL2460NZG1¬HL-2460N","HL2460ZG1¬HL-2460","HL2600CNG1¬HL-2600CN","HL2700CNG1BOM¬HL-2700CN","HL2700CNLTG1BOM¬HL-2700CNLT","HL3260NG1BOM¬HL-3260N","HL3450CNG1BOM¬HL-3450CN","HL4000CNZ1¬HL-4000CN","HL4040CNG1¬HL-4040CN","HL4050CDNG1¬HL-4050CDN","HL4050CLTG1BOM¬HL-4050CDNLT","HL4070CDWG1¬HL-4070CDW","HL4200CNG1BOM¬HL-4200CN","HL5030ZG1¬HL-5030","HL5040ZG1¬HL-5040","HL5050ZG1¬HL-5050","HL5070NZG1¬HL-5070N","HL5130ZG1¬HL-5130","HL5140LTG1BOM¬HL-5140LT","HL5140ZG1¬HL-5140","HL5150DLTG1BOM¬HL-5150DLT","HL5150DZG1¬HL-5150D","HL5170DNLTG1BOM¬HL-5170DNLT","HL5170DNZG1¬HL-5170DN","HL5240G1¬HL-5240","HL5240LG1¬HL-5240L","HL5250DNG1¬HL-5250DN","HL5270DN2LTG1BOM¬HL-5270DN2LT","HL5270DNG1¬HL-5270DN","HL5280DWG1¬HL-5280DW","HL6050DNZG1¬HL-6050DN","HL6050DZG1¬HL-6050D","HL6050ZG1¬HL-6050","HL7050NZG1¬HL-7050N","HL7050ZG1¬HL-7050","HL8050NG1BOM¬HL-8050N","HLP2500ZG1¬HL-P2500","M4318CG1¬M-4318","MW100G1¬MW-100","MW120G1¬MW-120","MW140BTFG1¬MW-140BT"); } else if (thisValue == "Multi_Funktions_Drucker") { thisValues = new Array("alt_mfcpro700c¬MFC Pro 700C","DCP110CG1¬DCP-110C","DCP115CG1¬DCP-115C","DCP117CG1¬DCP-117C","DCP120CG1¬DCP-120C","DCP130CG1¬DCP-130C","DCP135CG1¬DCP-135C","DCP150CG1¬DCP-150C","DCP310CNG1¬DCP-310CN","DCP315CNG1¬DCP-315CN","DCP330CG1¬DCP-330C","DCP340CWG1¬DCP-340CW","DCP350CG1¬DCP-350C","DCP357CG1¬DCP-357C","DCP4020CG1¬DCP-4020C","DCP540CNG1¬DCP-540CN","DCP560CNG1¬DCP-560CN","DCP7010G1¬DCP-7010","DCP7010LG1¬DCP-7010L","DCP7025G1¬DCP-7025","DCP750CWG1¬DCP-750CW","DCP770CWG1¬DCP-770CW","DCP8020G1¬DCP-8020","DCP8025DG1¬DCP-8025D","DCP8025DNG1¬DCP-8025DN","DCP8040G1¬DCP-8040","DCP8040LTG1BOM¬DCP-8040LT","DCP8045DG1¬DCP-8045D","DCP8045DNG1¬DCP-8045DN","DCP8060G1¬DCP-8060","DCP8065DNG1¬DCP-8065DN","DCP9040CNG1¬DCP-9040CN","DCP9045CDNG1¬DCP-9045CDN","MFC3320CNG1¬MFC-3320CN","MFC9160G1¬MFC-9160"); } else if (thisValue == "Faxgeraete") { thisValues = new Array("17720¬FAX-520DT","17721¬FAX-510","17726¬FAX-515","17727¬FAX-525DT","17732¬FAX-1200P","17733¬FAX-1150P","17734¬FAX-1700P","17738¬FAX-8000P","17740¬FAX-1010","17741¬FAX-8250P","17742¬FAX-1020","17743¬FAX-1030","17745¬MFC-1025","17748¬FAX-8200P","17751¬FAX-910","17752¬FAX-920","17753¬FAX-930","17754¬FAX-8650P","17756¬FAX-1010Plus","17757¬FAX-917","17758¬FAX-1030Plus","17759¬FAX-940 E-Mail","17780¬FAX-8050P","17783¬FAX-8350P","17787¬FAX-8750P","17788¬FAX-8060P","alt_fax1000p¬FAX-1000P","alt_fax1400m¬FAX-1400M","alt_fax1500¬FAX-1500","alt_fax160¬FAX-160","alt_fax2000p¬FAX-2000P","alt_fax3000p¬FAX-3000P","alt_fax305¬FAX-305","alt_fax325¬FAX-325","alt_fax370¬FAX-370","alt_fax390dt¬FAX-390DT","alt_fax450m¬FAX-450M","alt_fax470¬FAX-470","alt_fax475¬FAX-475","alt_fax490dt¬FAX-490DT","alt_fax5000p¬FAX-5000P","alt_fax550m¬FAX-550M","alt_fax570¬FAX-570","alt_fax575m¬FAX-575M","alt_fax590dt¬FAX-590DT","alt_faxt7p¬FAX-T7 plus","FAX1010EG1¬FAX-1010e","FAX1030EG1¬FAX-1030e","FAX1355G1¬FAX-1355","FAX1360G1¬FAX-1360","FAX1460G1¬FAX-1460","FAX1560G1¬FAX-1560","FAX1815CG1¬FAX-1815C","FAX1820CG1¬FAX-1820C","FAX1835CG1¬FAX-1835C","FAX1840CG1¬FAX-1840C","FAX1940CNG1¬FAX-1940CN","FAX2440CG1¬FAX-2440C","FAX2820G1¬FAX-2820","FAX2920G1¬FAX-2920","FAX8070PG1¬FAX-8070P","FAX8360PG1¬FAX-8360P","FAX8360PLTG1BOM¬FAX-8360PLT","FAXT102G1¬FAX-T102","FAXT104G1¬FAX-T104","FAXT106G1¬FAX-T106","FAXT72G1¬FAX-T72","FAXT74G1¬FAX-T74","FAXT76G1¬FAX-T76","FAXT78G1¬FAX-T78","FAXT92G1¬FAX-T92","FAXT94G1¬FAX-T94","FAXT96G1¬FAX-T96","FAXT98G1¬FAX-T98"); } else if (thisValue == "Multi_Funktions_Center") { thisValues = new Array("17736¬MFC-6000","17739¬MFC-9500","17749¬MFC-9050","17750¬MFC-9550","17773¬MFC-730","17774¬MFC-740","17776¬MFC-760","17777¬MFC-830","17778¬MFC-840","17779¬MFC-860","17786¬MFC-9650","17789¬MFC-9060","17793¬MFC-9750","17794¬MFC-9760","17795¬MFC-9850","17797¬MFC-9870","alt_connect5000¬Connect 5000","alt_mfc925¬MFC-925","MFC210CG1¬MFC-210C","MFC215CG1¬MFC-215C","MFC235CG1¬MFC-235C","MFC240CG1¬MFC-240C","MFC260CG1¬MFC-260C","MFC3220CG1¬MFC-3220C","MFC3240CG1¬MFC-3240C","MFC3340CNG1¬MFC-3340CN","MFC3360CG1¬MFC-3360C","MFC3420CG1¬MFC-3420C","MFC3820CNG1¬MFC-3820CN","MFC410CNG1¬MFC-410CN","MFC425CNG1¬MFC-425CN","MFC440CNG1¬MFC-440CN","MFC465CNG1¬MFC-465CN","MFC4820CG1¬MFC-4820C","MFC5440CNG1¬MFC-5440CN","MFC5460CNG1¬MFC-5460CN","MFC580G1¬MFC-580","MFC5840CNG1¬MFC-5840CN","MFC5860CNG1¬MFC-5860CN","MFC590G1¬MFC-590","MFC620CNG1¬MFC-620CN","MFC640CWG1¬MFC-640CW","MFC660CNG1¬MFC-660CN","MFC680CNG1¬MFC-680CN","MFC7225NG1¬MFC-7225N","MFC7420G1¬MFC-7420","MFC7820NG1¬MFC-7820N","MFC820CWG1¬MFC-820CW","MFC8220G1¬MFC-8220","MFC8420G1¬MFC-8420","MFC8440G1¬MFC-8440","MFC8440LTG1BOM¬MFC-8440LT","MFC845CWG1¬MFC-845CW","MFC8460NG1¬MFC-8460N","MFC8820DG1¬MFC-8820D","MFC8820DNG1¬MFC-8820DN","MFC8840DG1¬MFC-8840D","MFC8840DNG1¬MFC-8840DN","MFC885CWG1¬MFC-885CW","MFC8860DNG1¬MFC-8860DN","MFC8870DWG1¬MFC-8870DW","MFC890G1¬MFC-890","MFC9030G1¬MFC-9030","MFC9070G1¬MFC-9070","MFC9180G1¬MFC-9180","MFC9420CNLTG1BOM¬MFC-9420CNLT","MFC9420CNZZG1¬MFC-9420CN","MFC9440CNG1¬MFC-9440CN","MFC9660G1¬MFC-9660","MFC9840CDWG1¬MFC-9840CDW","MFC9860G1¬MFC-9860","MFC9880G1¬MFC-9880","ZMFLUNIP¬UNIMessage Pro Parallel","ZMFLUNIS¬UNIMessage Pro Seriell"); } else if (thisValue == "Netzwerkprodukte") { thisValues = new Array("26860¬NC-2100h","NC2010H¬NC-2010h","NC2010P¬NC-2010p","NC2100P¬NC-2100p","NC2200W¬NC-2200w","NC3100H¬NC-3100h","NC4100H¬NC-4100h","NC6100H¬NC-6100h","NC7100W¬NC-7100w","NC8000¬NC-8000","NC8100H¬NC-8100h","NC9100H¬NC-9100h"); } else if (thisValue == "P_touch") { thisValues = new Array("20003¬P-touch 2000","20007¬P-touch 5000","20013¬P-touch 200","20018¬P-touch 85","20021¬P-touch 310","20022¬P-touch 350","20026¬P-touch 1200","20027¬P-touch 1800","20029¬P-touch 2400","20051¬P-touch 1200P","20075¬P-touch 75","20089¬P-touch 2500PC","20093¬P-touch 9200PC","alt_pt340¬P-touch 340","alt_pt500¬P-touch 500","alt_pt7000¬P-touch 7000","alt_sc200¬SC-200 PC","alt_sc2000¬SC-2000","BB4ZG1¬P-touch BB4","PT1000FG1 limitierte Auflage¬PT-1000F limitierte Auflage","PT1000G1¬P-touch 1000","PT1000LG1¬PT-1000","PT1000TCMG1¬PT-1000TCM","PT1010G¬PT-1010","PT1250CCVPZG1VP¬P-touch 1250VP","PT1250LBF1G1¬P-touch 1250 J","PT1250LBG1¬P-touch 1250","PT1250SG1¬P-touch 1250S","PT1250VPSG1VPS¬P-touch 1250VPS","PT1260VPG1¬P-touch 1260VP","PT1280CBG1¬P-touch 1280CB","PT1280DTG1¬P-touch 1280DT","PT1280VPG1¬P-touch 1280VP","PT1750G1¬P-touch 1750","PT1800EZG1¬P-touch 1800E","PT1830VPG1¬P-touch 1830VP","PT1850CCG1¬P-touch 1850CC","PT1850G1¬P-touch 1850","PT1850VPG1¬P-touch 1850VP","PT18RG1¬P-touch 18R","PT1950VPG1¬P-touch 1950VP","PT2100VPG1¬P-touch 2100VP","PT210EA1¬P-touch 210E","PT220G1¬P-touch 220","PT2400EZG1¬P-touch 2400E","PT2420PCG1¬P-touch 2420PC","PT2450CCZG1¬P-touch 2450CC","PT2450DXG1¬P-touch 2450DX","PT2450ZG1¬P-touch 2450","PT2460G1¬P-touch 2460","PT2480G1¬P-touch 2480","PT2700VPG1¬P-touch 2700VP","PT3000G1¬P-touch 3000","PT300G1¬P-touch 300","PT3600G1¬P-touch 3600","PT550G1¬P-touch 550","pt55gtg1¬P-touch 55 grün","pt55ptg1¬P-touch 55 pink","PT65G1¬P-touch 65","PT8000G1BOM¬P-touch 8000","PT80G1¬P-touch 80","PT9200DXZZ1¬P-touch 9200DX","PT9400A1¬P-touch 9400","PT9500PCG1¬P-touch 9500PC","PT9600G1¬P-touch 9600","PTPCG1BOM¬P-touch PC","QL1050G1¬P-touch QL-1050","QL1050NG1¬P-touch QL-1050N","QL500AG1¬QL-500A","QL500G1¬P-touch QL-500","QL550G1¬P-touch QL-550","QL560VPG1¬P-touch QL-560VP","QL650TDG1¬P-touch QL 650TD","SC2000G1¬SC-2000"); } else if (thisValue == "Laminatoren") { thisValues = new Array("11420a¬LX-180","LX200XZG1¬LX-200X","LX300XZG1¬LX-300X"); } else if (thisValue == "Schreibmaschinen") { thisValues = new Array("13312¬LW-750ic","13313¬LW-800ic","13314¬LW-810ic","13315¬LW-830ic","13316¬LW-840ic","13331¬LW-100","13332¬LW-200","13335¬LW-350","alt_ax10¬AX-10","alt_ax110¬AX-110","alt_ax120¬AX-120","alt_ax130¬AX-130","alt_ax140¬AX-140","alt_ax15¬AX-15","alt_ax20¬AX-20","alt_ax210¬AX-210","alt_ax220¬AX-220","alt_ax230¬AX-230","alt_ax240¬AX-240","alt_ax25¬AX-25","alt_ax30¬AX-30","alt_ax320¬AX-320","alt_ax340¬AX-340","alt_ax35¬AX-35","alt_ax45¬AX-45","alt_ce25¬CE-25","alt_ce30¬CE-30","alt_ce40¬CE-40","alt_ce50¬CE-50","alt_ce500¬CE-500","alt_ce51¬CE-51","alt_ce550¬CE-550","alt_ce60¬CE-60","alt_ce600¬CE-600","alt_ce61¬CE-61","alt_ce650¬CE-650","alt_ce68¬CE-68","alt_ce70¬CE-70","alt_ce700¬CE-700","alt_em100¬EM-100","alt_em1000¬EM-1000","alt_em1050¬EM-1050","alt_em200¬EM-200","alt_em2050¬EM-2050","alt_em501¬EM-501","alt_em511¬EM-511","alt_em601¬EM-601","alt_em605¬EM-605","alt_em611¬EM-611","alt_em701¬EM-701","alt_em721¬EM-721","alt_em80¬EM-80","alt_em811fx¬EM-811fx","alt_em85¬EM-85","alt_em850FX¬EM-850FX","alt_lw10¬LW-10","alt_lw20¬LW-20","alt_lw30¬LW-30","alt_lw35¬LW-35","alt_lw400¬LW-400","alt_lw450¬LW-450","alt_lw600i¬LW-600i","alt_lw700¬LW-700","alt_lw710¬LW-710","alt_lw730i¬LW-730i","alt_wp1¬WP-1","alt_wp70¬WP-70","alt_wp77s¬WP-77s","AX300G1¬AX-300","AX310G1¬AX-310","AX330G1¬AX-330","AX410G1¬AX-410","AX425G1¬AX-425","AX430G1¬AX-430","AX440G1¬AX-440","CE400G1¬CE-400","CM1000G1¬CM-1000","CM2000G1¬CM-2000"); } else if (thisValue == "Fashion_Naehen_Stricken") { thisValues = new Array("2340CVZG1¬2340CV Coverlock","3034DG1¬Overlock 3034D","71037¬PE-150","72041¬Star-120 E","72042¬Star-110","72058¬M-929 D","72059¬Super ACE I","73019.¬LS 1717","73024.¬XL-5012","73025¬XL-5022","73026¬XL-5032","73029.¬LS 2920","alt_homelock530¬Homelock 530","alt_homelock546¬Homelock 546","alt_homelock73¬Homelock 73","alt_homelock76¬Homelock 76","alt_m525¬M-525","alt_m640d¬M-640D","alt_m895¬M-895","alt_m910¬M-910","alt_m920d¬M-920D","alt_modell300¬Modell 300","alt_modell400¬Modell 400","alt_modell485¬Modell 485","alt_modell500¬Modell 500","alt_modell765¬Modell 765","alt_modell845¬Modell 845","alt_modell847¬Modell 847","alt_modell870¬Modell 870","alt_star1¬Star 1","alt_star2¬Star 2","alt_vx582d¬VX-582D","alt_vx592d¬VX-592D","alt_vx707¬VX-707","alt_vx710¬VX-710","alt_vx757d¬VX-757D","alt_vx760¬VX-760","alt_vx950d¬VX-950D","BC2100ZG1Nähmaschine¬BC2100Nähmaschine","BC2500ZG1Nähmaschine¬BC2500Nähmaschine","BM2600ZG1Nähmaschine¬BM2600Nähmaschine","BM3500ZG1Nähmaschine¬BM3500Nähmaschine","CS8060ZG1¬Innov-ís CS-8060","CS8120ZG1¬Innov-ís CS-8120","E100PG1¬E-touch E-100P","LS2125RF1¬LS-2125","LS2720RG1¬LS-2720","M1034DG1¬M-1034 D","M2100DZG1¬Super Galaxie 2100 Disney","M3100DZG1¬Super Galaxie 3100 D","M945G1¬Super ACE III M945 ","M945QZG1¬Super ACE III Quilt","M955QG1¬Super ACE II ","M975EG1¬Super ACE ","M975EG2¬Super ACE + e","NV10AG1¬Innov-ís 10 Anniversary","NV10G1¬Innov-ís 10","NV1200G1¬Innov-ís 1200","NV1500DG2BOM¬Innov-ís 1500 Disney","NV200G1¬Innov-ís 200","NV30G1¬Innov-ís 30","NV350SEG1¬Innov-ís 350 Special Edition","NV4000DG2BOM Jubiläumsangebot¬Innov-ís 4000 Disney Jubiläumsangebot","NV4000DZG1¬Innov-ís 4000 Disney","NV400G1¬Innov-ís 400","NV500DZG1¬Innov-ís 500 Disney","NV50G1¬Innov-ís 50","NV600G1¬Innov-ís 600","NV700EIIZG1¬Innov-ís 700E II","NV700EZG1¬Innov-ís 700E","NX200LEG1¬NX-200 Limited Edition","NX200ZG1¬NX-200 ","NX400LEZG1¬NX400 Limited Edition","NX400QRF1¬NX400 Quilt Edition","NX400ZG1¬NX-400","NX600ZG1¬NX-600","PE180DG1¬PE-180 Disney","PE190DZG1¬PE-190 Disney","PE400DZG1¬PE - 400 Disney","PEDBASICZ1¬PEDBASIC","PEDESIGN5ZG1¬PE-Design Version 5.0","PEDESIGN6ZG1¬PE-Design Version 6.0","PEDESIGN7G1¬PE-Design 7.0","PEDLITEZ1¬PE-Design Lite","PQ1500SG1¬PQ-1500","PR600IIYS1¬PR-600 II","PR600ZG1¬PR-600","PR620G1¬PR-620","PS53ZG1¬PS-53","PS55ZG1¬PS-55","PS57ZG1¬PS-57","PX100G1¬PX-100","PX200G1¬PX-200","PX300G1¬PX-300","QC1000G1¬Innov-ís QC-1000","STAR230EZG1¬Star-230E","STAR240EZG1¬Star-240E","UGK60ZG1Upgrade ¬Upgrade für PE-Design Versionen 1-4 auf 6.0Upgrade ","UGK7ZG1¬Upgrade für PE-Design Versionen 5/6 auf 7.0","UPG5TO6ZG1Upgrade ¬Upgrade für PE-Design Version 5 auf 6.0Upgrade ","XL2120ZG1¬XL-2120","XL2220ZG1¬XL-2220","XL5500SEG1¬XL5500 SE ","XL5700SENähmaschine¬XL5700 Special EditionNähmaschine","XL5700SEG1¬XL5700"); } // Array in das Select abfüllen for (var i = 0; i < thisValues.length; ++i) { Werte = thisValues[i].split("¬"); document.forms[2].Modell.options[document.forms[2].Modell.length] = new Option(Werte[1],Werte[0],false,false);; } } /* * Flyout menus for the University of Washington Home Page * University of Washington / Computing and Communications * May, 2005 * Documentation can be found at * http://www.washington.edu/webinfo/case/flyout/ * $Id: flyout.js,v 2.9 2005/05/23 16:56:56 fmf Exp $ * * You are free to copy and/or use these flyout menus (or * derivative works) but please make sure this comment block * remains intact and in its entirety at the top of the file. */ var d = document; FlyLyr.on = 0; if ('undefined' != typeof d.getElementById) { FlyLyr.isMac = navigator.platform.indexOf ('Mac') >= 0; FlyLyr.on = 1; var ua = navigator.userAgent; FlyLyr.isOpera = ua.indexOf (' Opera ') >= 0; FlyLyr.isKonq = ua.indexOf (' Konqueror') >= 0; initFlyLyr (); initDelay (); d.write ('