var drop_breite = 180;
var sieben="aäbdeghnoöpqsuüAÄFLFTVXYZ1234567890";
var neun=  "wCDGHMNOÖQRUÜ";
var drei=  " fijltI";
var acht=  "BEKPS";
var fuenf= "vxyz";
var sechs= "ckJ";
var vier=  "r-";
var elf=   "mW";


function check_length(str)
{
  str_len=0;
  for(j=0; j<str.length; j++)
  {
    letter=str.charAt(j);
    if(sieben.indexOf(letter)!=-1) str_len+=6;
    if(neun.indexOf(letter)!=-1) str_len+=8;
    if(drei.indexOf(letter)!=-1) str_len+=3;
    if(acht.indexOf(letter)!=-1) str_len+=7;
    if(fuenf.indexOf(letter)!=-1) str_len+=4;
    if(sechs.indexOf(letter)!=-1) str_len+=5;
    if(vier.indexOf(letter)!=-1) str_len+=4;
    if(elf.indexOf(letter)!=-1) str_len+=9;
  }
  return(str_len+25);
}

function check_max_length(Mas)
{
  Max=0;
  for(i=0; i<Mas.length; i++){
    Str = Mas[i];   
    Length = check_length(Str);
    if(Length > Max) Max = Length;
    }
  return(Max);
}

function check_max_length_2(Mas,MasStr)
{
  Max=0;
  for(i=0; i<Mas.length; i++){
    Str = MasStr[Mas[i]];   
    Length = check_length(Str);
    if(Length > Max) Max = Length;
    }
  return(Max);
}

function Generate(name,Mas,Mas_V)
{  
  MaxLength = check_max_length(Mas);
  //alert(MaxLength);  
  
  Length = Mas.length;  
  if(MaxLength<drop_breite){
    for(i = 0; i < Length; i++) {    
      text = Mas[i];
      value = Mas_V[i];
      name.options[i+1] = new Option(text);
      name.options[i+1].value = value;    
      }  
    //name.length = Length+1;   
  }
  else
  {
    var Flag=0,j=1;   
    for(i = 0; i < Length; i++){
      Menu_Name = Mas[i];
      Menu_Value = Mas_V[i];
      
      if(name.options[j-1].value!=-2){       
        name.options[j] = new Option("-----------------------------------------");
        name.options[j].value = -2;
        j++;
        }       
      while(check_length(Menu_Name)>drop_breite)
      {          
      
        for(let_count=1; let_count<=Menu_Name.length; let_count++)
        {           
          Menu_Name_Tmp=Menu_Name.substr(0,let_count);                     
          if(check_length(Menu_Name_Tmp)>drop_breite){                        
            var Space = Menu_Name.substr(0,let_count-1).lastIndexOf(" ");
            if(Space!=-1) let_count=Space+2;            
            name.options[j] = new Option(Menu_Name.substr(0,let_count-1));
            name.options[j].value = Menu_Value;   
            j++; 
            Menu_Name = Menu_Name.substr(let_count-1,Menu_Name.length);            
            break;
          }
        }
        while(Menu_Name.indexOf(" ")==0) Menu_Name=Menu_Name.substr(1,Menu_Name.length);        
      }
      name.options[j] = new Option(Menu_Name);
      name.options[j].value = Menu_Value;   
      j++;      
     
      name.options[j] = new Option("-----------------------------------------");
      name.options[j].value = -2;
      j++;          
    }
  //name.length = j;      
  }  
}

function Generate_2(name,Mas,MasStr)
{  
  MaxLength = check_max_length_2(Mas,MasStr);
  //alert(MaxLength);  
  
  Length = Mas.length;  
  if(MaxLength<drop_breite){  	
    for(i = 0; i < Length; i++) {    
      text = MasStr[Mas[i]];
      value = Mas[i];
      name.options[i+1] = new Option(text);
      name.options[i+1].value = value;    
      }  
    //name.length = Length+1;   
  }
  else
  {
    var Flag=0,j=1;   
    for(i = 0; i < Length; i++){
      Menu_Name = MasStr[Mas[i]];
      Menu_Value = Mas[i];
      
      if(name.options[j-1].value!=-2){       
        name.options[j] = new Option("-----------------------------------------");
        name.options[j].value = -2;
        j++;
        }       
      while(check_length(Menu_Name)>drop_breite)
      {          
      
        for(let_count=1; let_count<=Menu_Name.length; let_count++)
        {           
          Menu_Name_Tmp=Menu_Name.substr(0,let_count);                     
          if(check_length(Menu_Name_Tmp)>drop_breite){                        
            var Space = Menu_Name.substr(0,let_count-1).lastIndexOf(" ");
            if(Space!=-1) let_count=Space+2;            
            name.options[j] = new Option(Menu_Name.substr(0,let_count-1));
            name.options[j].value = Menu_Value;   
            j++; 
            Menu_Name = Menu_Name.substr(let_count-1,Menu_Name.length);            
            break;
          }
        }
        while(Menu_Name.indexOf(" ")==0) Menu_Name=Menu_Name.substr(1,Menu_Name.length);        
      }
      name.options[j] = new Option(Menu_Name);
      name.options[j].value = Menu_Value;   
      j++;      
     
      name.options[j] = new Option("-----------------------------------------");
      name.options[j].value = -2;
      j++;          
    }
  //name.length = j;      
  }  
}



//-------------------------------------------- clear -----------------------------------------------------

function clear(name)
{
for(i = 1; i < name.length; i++) name.options[i] = null;      
name.options[0].text = ""; name.length = 1; name.selectedIndex = 0;
}


//-------------------------------------------- change -----------------------------------------------------

function change(name,PageID)
{
for(i = 1; i < name.length; i++){
  if(name.options[i].value ==PageID){
    name.selectedIndex = i; break;      
    }
  }  
}


//-------------------------------------------- menu innen -----------------------------------------------------

L2 = new Array();
L2[101] = new Array("HMS IV Artificial Head","HSU III Artificial Head Microphone","HSU III.1 Artificial Head Microphone","HSU III.2 Artificial Head Microphone","HSU III.3 Artificial Head Microphone","BHM III.2 Binaural Head Microphone","BHM III.3 Binaural Head Microphone","BHS I Binaural Headset");
L2[102] = new Array("HEADlab Modular Multi-Channel Front-End System for Mobile Data Acquisition","DATaRec 4 Series Modular Front End System","SQuadriga II Mobile Recording and Playback System","SQuadriga 4-Channel Recorder/ Front End","BEQ II.0 2-Channel USB Front End","BEQ II.1 2-Channel USB Front End with Equalization");
L2[103] = new Array("ArtemiS Multichannel Analysis Software","ArtemiS suite Software Solution for Sound and Vibration Analysis","NoiseBook Mobile Basic Analysis Software","SoundPower Determination of Sound Power","HEAD Recorder Programmable Recorder Software","ME’scopeVES from Vibrant Technology Inc.™");
L2[104] = new Array("BrakeOBSERVER Test System for Brake Noise","Noise Event Manager Interactive Sound Evaluation","HEAD BONI-Squeal License BOSCH","SoundPower Determination of Sound Power","HEAD Visor microphone array ");
L2[105] = new Array("PEQ Playback Equalizer","PVA Power Voltage Amplifier","HDA Headphone Distribution Amplifier","HSW I Subwoofer","HSW II.1 Subwoofer","SoundCar Multidimensional Sound Playback");
L2[106] = new Array("SQuare Sound Evaluation/ Listening Tests");
L2[107] = new Array("H3S Interactive Driving Sound Simulation","PROGNO[I]SE Binaural Transfer Path Synthesis (BTPS)");
L2[201] = new Array("HMS II.3 Artificial Head Measurement Systems","HMS II.4 Artificial Head Measurement Systems","HMS II.5 Artificial Head Measurement Systems","HMS II.6 Artificial Head Measurement Systems","ECS I.0-I.3 Ear Canal Simulation for HMS II.3/II.4","HHP III Positioning Mechanism for Handsets");
L2[202] = new Array("ACQUA Front Ends","BEQ II.1 2-Channel USB Front End with Equalization","H-QMON Speech Quality Monitor/ Front End for Telephones","SQuadriga 4-Channel Recorder/ Front End");
L2[203] = new Array("ACQUA Communication Analysis System","ACQUA Extension Options (ACOPT)","ACQUA Compact Systems","ITU, ETSI, TIA and other Standards","ACOPT Standards as ACQUA Option","HQS HEAD Quality Standards");
L2[204] = new Array("PEQ Digital Equalizer","PVA Power Voltage Amplifier");
L2[205] = new Array("HAE-BGN Automated Equalization for Background Noise Simulation in Labs","HAE-car Automated Equalization for Car Cabins","H3S Interactive Driving Sound Simulation");

L2_V = new Array();
L2_V[101] = new Array("1010","1011","1012","1013","1014","1015","1016","1017");
L2_V[102] = new Array("1021","1022","1023","1024","1025","1026");
L2_V[103] = new Array("1031","1032","1033","1034","1035","1036");
L2_V[104] = new Array("1041","1042","1043","1044","1045");
L2_V[105] = new Array("1051","1052","1053","1054","1055","1056");
L2_V[106] = new Array("1061");
L2_V[107] = new Array("1071","1072");
L2_V[201] = new Array("2011","2012","2013","2014","2015","2016");
L2_V[202] = new Array("2021","2022","2023","2024");
L2_V[203] = new Array("2031","2032","2033","2034","2035","2036");
L2_V[204] = new Array("2041","2042");
L2_V[205] = new Array("2051","2052","2053");

L3 = new Array();
L3[1010] = new Array("Product Description","Features","Application Advantages","Configuration Options","Relevant Products","Accessories","Training Offers");
L3[1011] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1012] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1013] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1014] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1015] = new Array("Product Description","Features","Application Advantages","Relevant Products","Training Offers");
L3[1016] = new Array("Product Description","Features","Application Advantages","Relevant Products","Training Offers");
L3[1017] = new Array("Product Description","Features","Application Advantages","Relevant Products","Training Offers");
L3[1021] = new Array("Product Description","Features","Application Advantages","HEADlab Modules","Relevant Products","Accessories");
L3[1022] = new Array("Product Description","Features","Application Advantages","Available Modules","Relevant Products","Accessories");
L3[1023] = new Array("Product Description","Features","Application Advantages","Adapter/ Cables","Accessories");
L3[1024] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1025] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1026] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1031] = new Array("Product Description","Features","Application Advantages","Data Acquisition","Relevant Products","Extension Modules (ATP/ADA)","License Management","Accessories","Training Offers");
L3[1032] = new Array("Product Description","Features","Application Advantages","Data Acquisition","License Management","ArtemiS suite Modules (ASM)","Relevant Products");
L3[1033] = new Array("Product Description","Features","Application Advantages","Data Acquisition","Extension Options (NTP)","Recommend Frontends","Training Offers");
L3[1034] = new Array("Product Description","Features","Implemented Standards","Relevant Products");
L3[1035] = new Array("Product Description","Features","Application Advantages","Relevant Products","Training Offers");
L3[1036] = new Array("Product Description","ME’scope Modules","Application Advantages","Relevant Products");
L3[1041] = new Array("Product Description","Features","Application Advantages","Accessories");
L3[1042] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[1043] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[1044] = new Array("Product Description","Features","Implemented Standards","Relevant Products");
L3[1045] = new Array("Product Description","Features","Components","Relevant Products");
L3[1051] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories","Training Offers");
L3[1052] = new Array("Product Description","Features","Application Advantages","Relevant Products","Training Offers");
L3[1053] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[1054] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[1055] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[1056] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[1061] = new Array("Product Description","Features","Application Advantages","Extension Options (STP)","Relevant Products");
L3[1071] = new Array("Product Description","Features","Application Advantages","Extension Options (H3S TP)","Relevant Products");
L3[1072] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[2011] = new Array("Overview","Product Description","Features","Applications","Relevant Products","Options","Accessories");
L3[2012] = new Array("Overview","Product Description","Features","Applications","Relevant Products","Options","Accessories");
L3[2013] = new Array("Overview","Product Description","Features","Applications","Relevant Products","Options","Accessories");
L3[2014] = new Array("Overview","Product Description","Features","Applications","Relevant Products","Accessories");
L3[2015] = new Array("Data Sheet");
L3[2016] = new Array("Product Description","Features","Applications","Relevant Products","Options");
L3[2021] = new Array("MFE III ACQUA Front End","MFE IV.3 ACQUA Front End","MFE V.1 ACQUA Front End","MFE VI ACQUA Front End","MFE VI.1 ACQUA Front End","MFE VII ACQUA Front End","MFE VIII ACQUA Front End","MFE IX ACQUA Front End","MFE X ACQUA Front End","MFE XI ACQUA Frontend","HGT I ACQUA Front End","HPO ACQUA Front End");
L3[2022] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories");
L3[2023] = new Array("Overview","Product Description","Features","Applications","Relevant Products","Options");
L3[2024] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories");
L3[2031] = new Array("Overview","Product Description","Features","Applications","Relevant Products","Extension Options (ACOPT)","ACQUA Compact Systems");
L3[2032] = new Array("Overview");
L3[2033] = new Array("Overview");
L3[2034] = new Array("Overview");
L3[2035] = new Array("Overview");
L3[2036] = new Array("Overview");
L3[2041] = new Array("Product Description","Features","Application Advantages","Relevant Products","Accessories");
L3[2042] = new Array("Product Description","Features","Application Advantages","Relevant Products");
L3[2051] = new Array("Overview","Product Description","Features","Applications","Accessories");
L3[2052] = new Array("Overview","Product Description","Features","Applications","Accessories");
L3[2053] = new Array("Product Description","Features","Application Advantages","Extension Options (H3S TP)","Relevant Products");

L3_V = new Array();
L3_V[1010] = new Array("10101","10102","10103","10104","10105","10106","10107");
L3_V[1011] = new Array("10111","10112","10113","10114","10115","10116");
L3_V[1012] = new Array("10121","10122","10123","10124","10125","10126");
L3_V[1013] = new Array("10131","10132","10133","10134","10135","10136");
L3_V[1014] = new Array("10141","10142","10143","10144","10145","10146");
L3_V[1015] = new Array("10151","10152","10153","10154","10155");
L3_V[1016] = new Array("10161","10162","10163","10164","10165");
L3_V[1017] = new Array("10171","10172","10173","10174","10175");
L3_V[1021] = new Array("10211","10212","10213","10214","10215","10216");
L3_V[1022] = new Array("10221","10222","10223","10224","10225","10226");
L3_V[1023] = new Array("10231","10232","10233","10234","10235");
L3_V[1024] = new Array("10241","10242","10243","10244","10245","10246");
L3_V[1025] = new Array("10251","10252","10253","10254","10255","10256");
L3_V[1026] = new Array("10261","10262","10263","10264","10265","10266");
L3_V[1031] = new Array("10311","10312","10313","10314","10315","10316","10317","10318","10319");
L3_V[1032] = new Array("10321","10322","10323","10324","10325","10326","10327");
L3_V[1033] = new Array("10331","10332","10333","10334","10335","10336");
L3_V[1034] = new Array("10341","10342","10343","10344");
L3_V[1035] = new Array("10351","10352","10353","10354");
L3_V[1036] = new Array("10361","10362","10363","10364");
L3_V[1041] = new Array("10411","10412","10413","10414");
L3_V[1042] = new Array("10421","10422","10423","10424");
L3_V[1043] = new Array("10431","10432","10433","10434");
L3_V[1044] = new Array("10441","10442","10443","10444");
L3_V[1045] = new Array("10451","10452","10453","10454");
L3_V[1051] = new Array("10511","10512","10513","10514","10515","10516");
L3_V[1052] = new Array("10521","10522","10523","10524","10525");
L3_V[1053] = new Array("10531","10532","10533","10534");
L3_V[1054] = new Array("10541","10542","10543","10544");
L3_V[1055] = new Array("10551","10552","10553","10554");
L3_V[1056] = new Array("10561","10562","10563","10564");
L3_V[1061] = new Array("10611","10612","10613","10614","10615");
L3_V[1071] = new Array("10711","10712","10713","10714","10715");
L3_V[1072] = new Array("10721","10722","10723","10724");
L3_V[2011] = new Array("20111","20112","20113","20114","20115","20116","20117");
L3_V[2012] = new Array("20121","20122","20123","20124","20125","20126","20127");
L3_V[2013] = new Array("20131","20132","20133","20134","20135","20136","20137");
L3_V[2014] = new Array("20141","20142","20143","20144","20145","20146");
L3_V[2015] = new Array("20151");
L3_V[2016] = new Array("20161","20162","20163","20164","20165");
L3_V[2021] = new Array("20210","20211","20212","20213","20214","20215","20216","20217","20218","202181","20219","20220");
L3_V[2022] = new Array("20221","20222","20223","20224","20225");
L3_V[2023] = new Array("20231","20232","20233","20234","20235","20236");
L3_V[2024] = new Array("20241","20242","20243","20244","20245");
L3_V[2031] = new Array("20311","20312","20313","20314","20315","20316","20317");
L3_V[2032] = new Array("20321");
L3_V[2033] = new Array("20331");
L3_V[2034] = new Array("20341");
L3_V[2035] = new Array("20351");
L3_V[2036] = new Array("20361");
L3_V[2041] = new Array("20411","20412","20413","20414","20415");
L3_V[2042] = new Array("20421","20422","20423","20424");
L3_V[2051] = new Array("20511","20512","20513","20514","20515");
L3_V[2052] = new Array("20521","20522","20523","20524","20525");
L3_V[2053] = new Array("20531","20532","20533","20534","20535");

URL = new Array();
URL[10101] = "../eng/nvh_hms_IV.htm";
URL[10102] = "../eng/nvh_hms_IV_characteristics.htm";
URL[10103] = "../eng/nvh_hms_IV_advantages.htm";
URL[10104] = "../eng/nvh_hms_IV_equipment.htm";
URL[10105] = "../eng/nvh_hms_IV_related_products.htm";
URL[10106] = "../eng/nvh_hms_IV_accessory.htm";
URL[10107] = "../eng/nvh_hms_IV_training_offer.htm";
URL[10111] = "../eng/nvh_hsu_III.htm";
URL[10112] = "../eng/nvh_hsu_III_characteristics.htm";
URL[10113] = "../eng/nvh_hsu_III_advantages.htm";
URL[10114] = "../eng/nvh_hsu_III_related_products.htm";
URL[10115] = "../eng/nvh_hsu_III_accessory.htm";
URL[10116] = "../eng/nvh_hsu_III_training_offer.htm";
URL[10121] = "../eng/nvh_hsu_III_1.htm";
URL[10122] = "../eng/nvh_hsu_III_1_characteristics.htm";
URL[10123] = "../eng/nvh_hsu_III_1_advantages.htm";
URL[10124] = "../eng/nvh_hsu_III_1_related_products.htm";
URL[10125] = "../eng/nvh_hsu_III_1_accessory.htm";
URL[10126] = "../eng/nvh_hsu_III_1_training_offer.htm";
URL[10131] = "../eng/nvh_hsu_III_2.htm";
URL[10132] = "../eng/nvh_hsu_III_2_characteristics.htm";
URL[10133] = "../eng/nvh_hsu_III_2_advantages.htm";
URL[10134] = "../eng/nvh_hsu_III_2_related_products.htm";
URL[10135] = "../eng/nvh_hsu_III_2_accessory.htm";
URL[10136] = "../eng/nvh_hsu_III_2_training_offer.htm";
URL[10141] = "../eng/nvh_hsu_III_3.htm";
URL[10142] = "../eng/nvh_hsu_III_3_characteristics.htm";
URL[10143] = "../eng/nvh_hsu_III_3_advantages.htm";
URL[10144] = "../eng/nvh_hsu_III_3_related_products.htm";
URL[10145] = "../eng/nvh_hsu_III_3_accessory.htm";
URL[10146] = "../eng/nvh_hsu_III_3_training_offer.htm";
URL[10151] = "../eng/nvh_bhm_III_2.htm";
URL[10152] = "../eng/nvh_bhm_III_2_characteristics.htm";
URL[10153] = "../eng/nvh_bhm_III_2_advantages.htm";
URL[10154] = "../eng/nvh_bhm_III_2_related_products.htm";
URL[10155] = "../eng/nvh_bhm_III_2_training_offer.htm";
URL[10161] = "../eng/nvh_bhm_III_3.htm";
URL[10162] = "../eng/nvh_bhm_III_3_characteristics.htm";
URL[10163] = "../eng/nvh_bhm_III_3_advantages.htm";
URL[10164] = "../eng/nvh_bhm_III_3_related_products.htm";
URL[10165] = "../eng/nvh_bhm_III_3_training_offer.htm";
URL[10171] = "../eng/nvh_bhs_I.htm";
URL[10172] = "../eng/nvh_bhs_I_characteristics.htm";
URL[10173] = "../eng/nvh_bhs_I_advantages.htm";
URL[10174] = "../eng/nvh_bhs_I_related_products.htm";
URL[10175] = "../eng/nvh_bhs_I_training_offer.htm";
URL[10211] = "../eng/nvh_headlab.htm";
URL[10212] = "../eng/nvh_headlab_characteristics.htm";
URL[10213] = "../eng/nvh_headlab_advantages.htm";
URL[10214] = "../eng/nvh_headlab_modules.htm";
URL[10215] = "../eng/nvh_headlab_related_products.htm";
URL[10216] = "../eng/nvh_headlab_accessory.htm";
URL[10221] = "../eng/nvh_datarec_4.htm";
URL[10222] = "../eng/nvh_datarec_4_characteristics.htm";
URL[10223] = "../eng/nvh_datarec_4_advantages.htm";
URL[10224] = "../eng/nvh_datarec_4_modules.htm";
URL[10225] = "../eng/nvh_datarec_4_related_products.htm";
URL[10226] = "../eng/nvh_datarec_4_accessory.htm";
URL[10231] = "../eng/nvh_squadriga_II.htm";
URL[10232] = "../eng/nvh_squadriga_II_characteristics.htm";
URL[10233] = "../eng/nvh_squadriga_II_advantages.htm";
URL[10234] = "../eng/nvh_squadriga_II_related_products.htm";
URL[10235] = "../eng/nvh_squadriga_II_accessory.htm";
URL[10241] = "../eng/nvh_squadriga.htm";
URL[10242] = "../eng/nvh_squadriga_characteristics.htm";
URL[10243] = "../eng/nvh_squadriga_advantages.htm";
URL[10244] = "../eng/nvh_squadriga_related_products.htm";
URL[10245] = "../eng/nvh_squadriga_accessory.htm";
URL[10246] = "../eng/nvh_squadriga_training_offer.htm";
URL[10251] = "../eng/nvh_beq_II_0.htm";
URL[10252] = "../eng/nvh_beq_II_0_characteristics.htm";
URL[10253] = "../eng/nvh_beq_II_0_advantages.htm";
URL[10254] = "../eng/nvh_beq_II_0_related_products.htm";
URL[10255] = "../eng/nvh_beq_II_0_accessory.htm";
URL[10256] = "../eng/nvh_beq_II_0_training_offer.htm";
URL[10261] = "../eng/nvh_beq_II_1.htm";
URL[10262] = "../eng/nvh_beq_II_1_characteristics.htm";
URL[10263] = "../eng/nvh_beq_II_1_advantages.htm";
URL[10264] = "../eng/nvh_beq_II_1_related_products.htm";
URL[10265] = "../eng/nvh_beq_II_1_accessory.htm";
URL[10266] = "../eng/nvh_beq_II_1_training_offer.htm";
URL[10311] = "../eng/nvh_artemis.htm";
URL[10312] = "../eng/nvh_artemis_characteristics.htm";
URL[10313] = "../eng/nvh_artemis_advantages.htm";
URL[10314] = "../eng/nvh_artemis_data_acquisition.htm";
URL[10315] = "../eng/nvh_artemis_related_products.htm";
URL[10316] = "../eng/nvh_artemis_moduls.htm";
URL[10317] = "../eng/nvh_artemis_license_management.htm";
URL[10318] = "../eng/nvh_artemis_accessory.htm";
URL[10319] = "../eng/nvh_artemis_training_offer.htm";
URL[10321] = "../eng/nvh_artemis_suite.htm";
URL[10322] = "../eng/nvh_artemis_suite_characteristics.htm";
URL[10323] = "../eng/nvh_artemis_suite_advantages.htm";
URL[10324] = "../eng/nvh_artemis_suite_data_acquisition.htm";
URL[10325] = "../eng/nvh_artemis_suite_license_management.htm";
URL[10326] = "../eng/nvh_artemis_suite_moduls.htm";
URL[10327] = "../eng/nvh_artemis_suite_related_products.htm";
URL[10331] = "../eng/nvh_noisebook.htm";
URL[10332] = "../eng/nvh_noisebook_characteristics.htm";
URL[10333] = "../eng/nvh_noisebook_advantages.htm";
URL[10334] = "../eng/nvh_noisebook_data_acquisition.htm";
URL[10335] = "../eng/nvh_noisebook_moduls.htm";
URL[10336] = "../eng/nvh_noisebook_related_products.htm";
URL[10341] = "../eng/nvh_soundpower.htm";
URL[10342] = "../eng/nvh_soundpower_characteristics.htm";
URL[10343] = "../eng/nvh_soundpower_standards.htm";
URL[10344] = "../eng/nvh_soundpower_related_products.htm";
URL[10351] = "../eng/nvh_head_recorder.htm";
URL[10352] = "../eng/nvh_head_recorder_characteristics.htm";
URL[10353] = "../eng/nvh_head_recorder_advantages.htm";
URL[10354] = "../eng/nvh_head_recorder_related_products.htm";
URL[10361] = "../eng/nvh_me_scope_ves.htm";
URL[10362] = "../eng/nvh_me_scope_ves_modules.htm";
URL[10363] = "../eng/nvh_me_scope_ves_advantages.htm";
URL[10364] = "../eng/nvh_me_scope_ves_related_products.htm";
URL[10411] = "../eng/nvh_brakeobserver.htm";
URL[10412] = "../eng/nvh_brakeobserver_characteristics.htm";
URL[10413] = "../eng/nvh_brakeobserver_advantages.htm";
URL[10414] = "../eng/nvh_brakeobserver_accessory.htm";
URL[10421] = "../eng/nvh_noise_event_manager.htm";
URL[10422] = "../eng/nvh_noise_event_manager_characteristics.htm";
URL[10423] = "../eng/nvh_noise_event_manager_advantages.htm";
URL[10424] = "../eng/nvh_noise_event_manager_related_products.htm";
URL[10431] = "../eng/nvh_boni_squeal.htm";
URL[10432] = "../eng/nvh_boni_squeal_characteristics.htm";
URL[10433] = "../eng/nvh_boni_squeal_advantages.htm";
URL[10434] = "../eng/nvh_boni_squeal_related_products.htm";
URL[10441] = "../eng/nvh_soundpower.htm";
URL[10442] = "../eng/nvh_soundpower_characteristics.htm";
URL[10443] = "../eng/nvh_soundpower_standards.htm";
URL[10444] = "../eng/nvh_soundpower_related_products.htm";
URL[10451] = "../eng/nvh_head-visor.htm";
URL[10452] = "../eng/nvh_head-visor_characteristics.htm";
URL[10453] = "../eng/nvh_head-visor_components.htm";
URL[10454] = "../eng/nvh_head-visor_related_products.htm";
URL[10511] = "../eng/nvh_peq_V.htm";
URL[10512] = "../eng/nvh_peq_V_characteristics.htm";
URL[10513] = "../eng/nvh_peq_V_advantages.htm";
URL[10514] = "../eng/nvh_peq_V_related_products.htm";
URL[10515] = "../eng/nvh_peq_V_accessory.htm";
URL[10516] = "../eng/nvh_peq_V_training_offer.htm";
URL[10521] = "../eng/nvh_pva_IV_3.htm";
URL[10522] = "../eng/nvh_pva_IV_3_characteristics.htm";
URL[10523] = "../eng/nvh_pva_IV_3_advantages.htm";
URL[10524] = "../eng/nvh_pva_IV_3_related_products.htm";
URL[10525] = "../eng/nvh_pva_IV_3_training_offer.htm";
URL[10531] = "../eng/nvh_hda_IV.htm";
URL[10532] = "../eng/nvh_hda_IV_characteristics.htm";
URL[10533] = "../eng/nvh_hda_IV_advantages.htm";
URL[10534] = "../eng/nvh_hda_IV_related_products.htm";
URL[10541] = "../eng/nvh_hsw_I.htm";
URL[10542] = "../eng/nvh_hsw_I_characteristics.htm";
URL[10543] = "../eng/nvh_hsw_I_advantages.htm";
URL[10544] = "../eng/nvh_hsw_I_related_products.htm";
URL[10551] = "../eng/nvh_hsw_II_1.htm";
URL[10552] = "../eng/nvh_hsw_II_1_characteristics.htm";
URL[10553] = "../eng/nvh_hsw_II_1_advantages.htm";
URL[10554] = "../eng/nvh_hsw_II_1_related_products.htm";
URL[10561] = "../eng/nvh_soundcar.htm";
URL[10562] = "../eng/nvh_soundcar_characteristics.htm";
URL[10563] = "../eng/nvh_soundcar_advantages.htm";
URL[10564] = "../eng/nvh_soundcar_related_products.htm";
URL[10611] = "../eng/nvh_square.htm";
URL[10612] = "../eng/nvh_square_characteristics.htm";
URL[10613] = "../eng/nvh_square_advantages.htm";
URL[10614] = "../eng/nvh_square_moduls.htm";
URL[10615] = "../eng/nvh_square_related_products.htm";
URL[10711] = "../eng/nvh_h3s.htm";
URL[10712] = "../eng/nvh_h3s_characteristics.htm";
URL[10713] = "../eng/nvh_h3s_advantages.htm";
URL[10714] = "../eng/nvh_h3s_moduls.htm";
URL[10715] = "../eng/nvh_h3s_related_products.htm";
URL[10721] = "../eng/nvh_prognoise.htm";
URL[10722] = "../eng/nvh_prognoise_characteristics.htm";
URL[10723] = "../eng/nvh_prognoise_advantages.htm";
URL[10724] = "../eng/nvh_prognoise_related_products.htm";
URL[20111] = "../eng/telecom_hms_II_3.htm";
URL[20112] = "../eng/telecom_hms_II_3_description.htm";
URL[20113] = "../eng/telecom_hms_II_3_characteristics.htm";
URL[20114] = "../eng/telecom_hms_II_3_applications.htm";
URL[20115] = "../eng/telecom_hms_II_3_related_products.htm";
URL[20116] = "../eng/telecom_hms_II_3_options.htm";
URL[20117] = "../eng/telecom_hms_II_3_accessory.htm";
URL[20121] = "../eng/telecom_hms_II_4.htm";
URL[20122] = "../eng/telecom_hms_II_4_description.htm";
URL[20123] = "../eng/telecom_hms_II_4_characteristics.htm";
URL[20124] = "../eng/telecom_hms_II_4_applications.htm";
URL[20125] = "../eng/telecom_hms_II_4_related_products.htm";
URL[20126] = "../eng/telecom_hms_II_4_options.htm";
URL[20127] = "../eng/telecom_hms_II_4_accessory.htm";
URL[20131] = "../eng/telecom_hms_II_5.htm";
URL[20132] = "../eng/telecom_hms_II_5_description.htm";
URL[20133] = "../eng/telecom_hms_II_5_characteristics.htm";
URL[20134] = "../eng/telecom_hms_II_5_applications.htm";
URL[20135] = "../eng/telecom_hms_II_5_related_products.htm";
URL[20136] = "../eng/telecom_hms_II_5_options.htm";
URL[20137] = "../eng/telecom_hms_II_5_accessory.htm";
URL[20141] = "../eng/telecom_hms_II_6.htm";
URL[20142] = "../eng/telecom_hms_II_6_description.htm";
URL[20143] = "../eng/telecom_hms_II_6_characteristics.htm";
URL[20144] = "../eng/telecom_hms_II_6_applications.htm";
URL[20145] = "../eng/telecom_hms_II_6_related_products.htm";
URL[20146] = "../eng/telecom_hms_II_6_accessory.htm";
URL[20151] = "../eng/telecom_hms_II_3_download.htm";
URL[20161] = "../eng/telecom_hhp_III.htm";
URL[20162] = "../eng/telecom_hhp_III_characteristics.htm";
URL[20163] = "../eng/telecom_hhp_III_applications.htm";
URL[20164] = "../eng/telecom_hhp_III_related_products.htm";
URL[20165] = "../eng/telecom_hhp_III_options.htm";
URL[20210] = "../eng/telecom_acqua_mfe_III.htm";
URL[20211] = "../eng/telecom_acqua_mfe_IV_3.htm";
URL[20212] = "../eng/telecom_acqua_mfe_V_1.htm";
URL[20213] = "../eng/telecom_acqua_mfe_VI.htm";
URL[20214] = "../eng/telecom_acqua_mfe_VI_1.htm";
URL[20215] = "../eng/telecom_acqua_mfe_VII.htm";
URL[20216] = "../eng/telecom_acqua_mfe_VIII.htm";
URL[20217] = "../eng/telecom_acqua_mfe_IX.htm";
URL[20218] = "../eng/telecom_acqua_mfe_X.htm";
URL[202181] = "../eng/telecom_acqua_mfe_XI.htm";
URL[20219] = "../eng/telecom_acqua_hgt_I.htm";
URL[20220] = "../eng/telecom_acqua_hpo.htm";
URL[20221] = "../eng/telecom_beq_II_1.htm";
URL[20222] = "../eng/telecom_beq_II_1_characteristics.htm";
URL[20223] = "../eng/telecom_beq_II_1_advantages.htm";
URL[20224] = "../eng/telecom_beq_II_1_related_products.htm";
URL[20225] = "../eng/telecom_beq_II_1_accessory.htm";
URL[20231] = "../eng/telecom_h-qmon.htm";
URL[20232] = "../eng/telecom_h-qmon_description.htm";
URL[20233] = "../eng/telecom_h-qmon_characteristics.htm";
URL[20234] = "../eng/telecom_h-qmon_applications.htm";
URL[20235] = "../eng/telecom_h-qmon_related_products.htm";
URL[20236] = "../eng/telecom_h-qmon_options.htm";
URL[20241] = "../eng/telecom_squadriga.htm";
URL[20242] = "../eng/telecom_squadriga_characteristics.htm";
URL[20243] = "../eng/telecom_squadriga_advantages.htm";
URL[20244] = "../eng/telecom_squadriga_related_products.htm";
URL[20245] = "../eng/telecom_squadriga_accessory.htm";
URL[20311] = "../eng/telecom_acqua.htm";
URL[20312] = "../eng/telecom_acqua_description.htm";
URL[20313] = "../eng/telecom_acqua_characteristics.htm";
URL[20314] = "../eng/telecom_acqua_applications.htm";
URL[20315] = "../eng/telecom_acqua_related_products.htm";
URL[20316] = "../eng/telecom_acqua_acopt.htm";
URL[20317] = "../eng/telecom_acqua_compact.htm";
URL[20321] = "../eng/telecom_acqua_acopt.htm";
URL[20331] = "../eng/telecom_acqua_compact.htm";
URL[20341] = "../eng/telecom_measurement_standards.htm";
URL[20351] = "../eng/telecom_measurement_standards_acopt.htm";
URL[20361] = "../eng/telecom_hqs.htm";
URL[20411] = "../eng/telecom_peq_V.htm";
URL[20412] = "../eng/telecom_peq_V_characteristics.htm";
URL[20413] = "../eng/telecom_peq_V_advantages.htm";
URL[20414] = "../eng/telecom_peq_V_related_products.htm";
URL[20415] = "../eng/telecom_peq_V_accessory.htm";
URL[20421] = "../eng/telecom_pva_IV_3.htm";
URL[20422] = "../eng/telecom_pva_IV_3_characteristics.htm";
URL[20423] = "../eng/telecom_pva_IV_3_advantages.htm";
URL[20424] = "../eng/telecom_pva_IV_3_related_products.htm";
URL[20511] = "../eng/telecom_hae_bgn.htm";
URL[20512] = "../eng/telecom_hae_bgn_description.htm";
URL[20513] = "../eng/telecom_hae_bgn_characteristics.htm";
URL[20514] = "../eng/telecom_hae_bgn_applications.htm";
URL[20515] = "../eng/telecom_hae_bgn_accessory.htm";
URL[20521] = "../eng/telecom_hae_car.htm";
URL[20522] = "../eng/telecom_hae_car_description.htm";
URL[20523] = "../eng/telecom_hae_car_characteristics.htm";
URL[20524] = "../eng/telecom_hae_car_applications.htm";
URL[20525] = "../eng/telecom_hae_car_accessory.htm";
URL[20531] = "../eng/telecom_h3s.htm";
URL[20532] = "../eng/telecom_h3s_characteristics.htm";
URL[20533] = "../eng/telecom_h3s_advantages.htm";
URL[20534] = "../eng/telecom_h3s_moduls.htm";
URL[20535] = "../eng/telecom_h3s_related_products.htm";

var drop_breite=180;
var Text2 = "Choose the product...";
var Text3 = "Choose desired information...";


//--------------------------------------------- changed_1 ------------------------------------------------

function changed_1(name,PageID)
{
Form = name.form;
if(PageID!=null) change(name,PageID);
Cur = name.options[name.selectedIndex];
clear(Form.ptyp); clear(Form.modell);
if(Cur.value>0){ 
  if(Cur.text.indexOf("Specials")!=-1) Form.ptyp.options[0].text = "2. " + Text3;   
  else Form.ptyp.options[0].text = "2. " + Text2;
  Generate(Form.ptyp,L2[Cur.value],L2_V[Cur.value]);
  }

}


//--------------------------------------------- changed_2 ------------------------------------------------

function changed_2(name,PageID)
{
Form = name.form;
if(PageID!=null) change(name,PageID);
Cur = name.options[name.selectedIndex];  
clear(Form.modell);
if(URL[Cur.value]!=null){
  location.href = URL[Cur.value];
  return;
  }  
  
if(Cur.value>0){
  Form.modell.options[0].text = "3." + Text3;
  Generate(Form.modell,L3[Cur.value],L3_V[Cur.value]);
  }
}


//--------------------------------------------- changed_3 ------------------------------------------------

function changed_3(name)
{
value = name.options[name.selectedIndex].value;
if(value>0) location.href = URL[value];
}

