/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

  if (window.innerWidth) {
    WindowWeite = window.innerWidth;
  } else if (document.body && document.body.offsetWidth) {
    WindowWeite = document.body.offsetWidth;
  } else {

  }
//document.write("Weite: " + WindowWeite)
if (navigator.appName == "Netscape")
   {
   if (WindowWeite <= 860)
      {
      Unternehmen = 20
      LeistungAbstand = 123
      ServiceAbstand = 191
      AktuellesAbstand = 325
      AnfrageAbstand = 397
      }
   else
      {
      Unternehmen = WindowWeite / 2 - 406
      LeistungAbstand = WindowWeite / 2 - 303
      ServiceAbstand = WindowWeite / 2 - 237
      AktuellesAbstand = WindowWeite / 2 - 105
      AnfrageAbstand = WindowWeite / 2 - 33
      }
   }
else
if (navigator.appName == "Opera")
   {
   if (WindowWeite <= 860)
      {
      Unternehmen = 22
      LeistungAbstand = 125
      ServiceAbstand = 193
      AktuellesAbstand = 327
      AnfrageAbstand = 399
      }
   else
      {
      Unternehmen = WindowWeite / 2 - 404
      LeistungAbstand = WindowWeite / 2 - 301
      ServiceAbstand = WindowWeite / 2 - 235
      AktuellesAbstand = WindowWeite / 2 - 103
      AnfrageAbstand = WindowWeite / 2 - 31
      }
   }
else
   {
   if (WindowWeite <= 860)
      {
      Unternehmen = 11
      LeistungAbstand = 114
      ServiceAbstand = 182
      AktuellesAbstand = 316
      AnfrageAbstand = 388
      }
   else
      {
      Unternehmen = WindowWeite / 2 - 415
      LeistungAbstand = WindowWeite / 2 - 312
      ServiceAbstand = WindowWeite / 2 - 246
      AktuellesAbstand = WindowWeite / 2 - 114
      AnfrageAbstand = WindowWeite / 2 - 42
      }
   }


// Abstand des Menüs von Oben
if (navigator.appName == "Netscape")
  {
  AbstandvonOben = 12
  }
else
if (navigator.appName == "Opera")
  {
  AbstandvonOben = 9
  }
else
  {
  AbstandvonOben = 20   
   }

// Verzögerung des Pull-down-Menüs
Linkwait = 200

//Menu object creation
UnternehmenCmenu=new makeCM("UnternehmenCmenu") //Making the menu object. Argument: menuname

UnternehmenCmenu.frames = 0

//Menu properties   
UnternehmenCmenu.pxBetween=1
UnternehmenCmenu.fromLeft= Unternehmen
UnternehmenCmenu.fromTop=AbstandvonOben
UnternehmenCmenu.rows=1 
UnternehmenCmenu.menuPlacement="left"
                                                             
UnternehmenCmenu.offlineRoot="" 
UnternehmenCmenu.onlineRoot="" 
UnternehmenCmenu.resizeCheck=1 
UnternehmenCmenu.wait=Linkwait
UnternehmenCmenu.fillImg="cm_fill.gif"
UnternehmenCmenu.zIndex=0

//Background bar properties
UnternehmenCmenu.useBar=0
UnternehmenCmenu.barWidth="1%"
UnternehmenCmenu.barHeight="menu" 
UnternehmenCmenu.barClass="clBar"
UnternehmenCmenu.barX=0 
UnternehmenCmenu.barY=0
UnternehmenCmenu.barBorderX=0
UnternehmenCmenu.barBorderY=0
UnternehmenCmenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
UnternehmenCmenu.level[0]=new cm_makeLevel() //Add this for each new level
UnternehmenCmenu.level[0].width=99
StrichAbstand1=Unternehmen + UnternehmenCmenu.level[0].width -2
UnternehmenCmenu.level[0].height=25 
UnternehmenCmenu.level[0].regClass="clLevel0"
UnternehmenCmenu.level[0].overClass="clLevel0over"
UnternehmenCmenu.level[0].borderX=1
UnternehmenCmenu.level[0].borderY=1
UnternehmenCmenu.level[0].borderClass="clLevel0border"
UnternehmenCmenu.level[0].offsetX=0
UnternehmenCmenu.level[0].offsetY=0
UnternehmenCmenu.level[0].rows=0
UnternehmenCmenu.level[0].arrow=0
UnternehmenCmenu.level[0].arrowWidth=0
UnternehmenCmenu.level[0].arrowHeight=0
UnternehmenCmenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
UnternehmenCmenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
UnternehmenCmenu.level[1].width=120
UnternehmenCmenu.level[1].height=22
UnternehmenCmenu.level[1].regClass="clLevel1"
UnternehmenCmenu.level[1].overClass="clLevel1over"
UnternehmenCmenu.level[1].borderX=1
UnternehmenCmenu.level[1].borderY=1
UnternehmenCmenu.level[1].align="right" 
UnternehmenCmenu.level[1].offsetX=-(UnternehmenCmenu.level[0].width-2)/2+20
UnternehmenCmenu.level[1].offsetY=0
UnternehmenCmenu.level[1].borderClass="clLevel1border"


/******************************************
Menüeinträge "UNTERNEHMEN"
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
UnternehmenCmenu.makeMenu('top0','','UNTERNEHMEN','unternehmen.htm')

UnternehmenCmenu.construct()	

/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
LeistungCmenu=new makeCM("LeistungCmenu") //Making the menu object. Argument: menuname

LeistungCmenu.frames = 0

//Menu properties   
LeistungCmenu.pxBetween=1
LeistungCmenu.fromLeft= LeistungAbstand
LeistungCmenu.fromTop=AbstandvonOben
LeistungCmenu.rows=1 
LeistungCmenu.menuPlacement="left"
                                                             
LeistungCmenu.offlineRoot="" 
LeistungCmenu.onlineRoot="" 
LeistungCmenu.resizeCheck=1 
LeistungCmenu.wait=Linkwait
LeistungCmenu.fillImg="cm_fill.gif"
LeistungCmenu.zIndex=0

//Level properties - ALL properties have to be spesified in level 0
LeistungCmenu.level[0]=new cm_makeLevel() //Add this for each new level
LeistungCmenu.level[0].width=62
StrichAbstand2=LeistungAbstand + LeistungCmenu.level[0].width - 2
LeistungCmenu.level[0].height=25 
LeistungCmenu.level[0].regClass="clLevel0"
LeistungCmenu.level[0].overClass="clLevel0over"
LeistungCmenu.level[0].borderX=1
LeistungCmenu.level[0].borderY=1
LeistungCmenu.level[0].borderClass="clLevel0border"
LeistungCmenu.level[0].offsetX=0
LeistungCmenu.level[0].offsetY=0
LeistungCmenu.level[0].rows=0
LeistungCmenu.level[0].arrow=0
LeistungCmenu.level[0].arrowWidth=0
LeistungCmenu.level[0].arrowHeight=0
LeistungCmenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
LeistungCmenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
LeistungCmenu.level[1].width=85
LeistungCmenu.level[1].height=22
LeistungCmenu.level[1].regClass="clLevel1"
LeistungCmenu.level[1].overClass="clLevel1over"
LeistungCmenu.level[1].borderX=1
LeistungCmenu.level[1].borderY=1
LeistungCmenu.level[1].align="right" 
LeistungCmenu.level[1].offsetX=-(LeistungCmenu.level[0].width-2)/2+30
LeistungCmenu.level[1].offsetY=0
LeistungCmenu.level[1].borderClass="clLevel1border"


/******************************************
Menüeinträge "Leistung"
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
LeistungCmenu.makeMenu('top0','','LEISTUNG','')
LeistungCmenu.makeMenu('sub01','top0','&nbsp;KONZEPTION','konzeption_l.htm')
LeistungCmenu.makeMenu('sub02','top0','&nbsp;HARDWARE','hardware_l.htm')
LeistungCmenu.makeMenu('sub03','top0','&nbsp;GREEN IT','')
  LeistungCmenu.makeMenu('sub0301','sub03','&nbsp;DETAILS','greenit.htm','',90)
  LeistungCmenu.makeMenu('sub0302','sub03','&nbsp;KONZEPTION','greenit_k.htm','',90)
  LeistungCmenu.makeMenu('sub0303','sub03','&nbsp;ORIENTIERUNG','greenit_o.htm','',90)
LeistungCmenu.makeMenu('sub08','top0','&nbsp;FEINSTAUB','')
  LeistungCmenu.makeMenu('sub0801','sub08','&nbsp;DETAILS','feinstaub.htm','',90)
  LeistungCmenu.makeMenu('sub0802','sub08','&nbsp;TECHNOLOGIE','feinstaub_t.htm','',90)
  LeistungCmenu.makeMenu('sub0803','sub08','&nbsp;VIDEO','film.htm','',90)
  LeistungCmenu.makeMenu('sub0804','sub08','&nbsp;ANFRAGE','anfrage_f.htm','',90)
LeistungCmenu.makeMenu('sub04','top0','&nbsp;SOFTWARE','')
  LeistungCmenu.makeMenu('sub0401','sub04','&nbsp;WARENWIRTSCHAFT','','',118)
    LeistungCmenu.makeMenu('sub0401401','sub0401','&nbsp;DETAILS','next.htm','',118)
    LeistungCmenu.makeMenu('sub0401402','sub0401','&nbsp;VERGLEICH','datenblaetter/next_leistungsvergleich.pdf','_blank',118)
    LeistungCmenu.makeMenu('sub0401403','sub0401','&nbsp;PREISE','datenblaetter/next_preise_evk.pdf','_blank',118)
  LeistungCmenu.makeMenu('sub0402','sub04','&nbsp;ONLINESHOP','','',118)
    LeistungCmenu.makeMenu('sub0402401','sub0402','&nbsp;DETAILS','ecommerce_i.htm','',118)
    LeistungCmenu.makeMenu('sub0402402','sub0402','&nbsp;FEATURES','ecommerce_f.htm','',118)
    LeistungCmenu.makeMenu('sub0402403','sub0402','&nbsp;B2B','ecommerce_b2b.htm','',118)
    LeistungCmenu.makeMenu('sub0402404','sub0402','&nbsp;PORTAL','ecommerce_p.htm','',118)
    LeistungCmenu.makeMenu('sub0402405','sub0402','&nbsp;MALL','ecommerce_m.htm','',118)
    LeistungCmenu.makeMenu('sub0402406','sub0402','&nbsp;BEISPIELE','ecommerce_ib.htm','',118)
    LeistungCmenu.makeMenu('sub0402407','sub0402','&nbsp;PREISE','ecommerce_pr.htm','',118)
  LeistungCmenu.makeMenu('sub0403','sub04','&nbsp;MAILSERVER','ftgate_info.htm','',118)
LeistungCmenu.makeMenu('sub05','top0','&nbsp;NETZWERKE','netzwerke_l.htm')
LeistungCmenu.makeMenu('sub06','top0','&nbsp;INTERNET','')
  LeistungCmenu.makeMenu('sub0601','sub06','&nbsp;DESIGN','internet_d.htm','',105)
  LeistungCmenu.makeMenu('sub0602','sub06','&nbsp;ONLINESHOP','','',105)
    LeistungCmenu.makeMenu('sub0602601','sub0602','&nbsp;DETAILS','ecommerce_i.htm','',105)
    LeistungCmenu.makeMenu('sub0602602','sub0602','&nbsp;FEATURES','ecommerce_f.htm','',105)
    LeistungCmenu.makeMenu('sub0602603','sub0602','&nbsp;B2B','ecommerce_b2b.htm','',105)
    LeistungCmenu.makeMenu('sub0602604','sub0602','&nbsp;PORTAL','ecommerce_p.htm','',105)
    LeistungCmenu.makeMenu('sub0602605','sub0602','&nbsp;MALL','ecommerce_m.htm','',105)
    LeistungCmenu.makeMenu('sub0602606','sub0602','&nbsp;BEISPIELE','ecommerce_ib.htm','',105)
    LeistungCmenu.makeMenu('sub0602607','sub0602','&nbsp;PREISE','ecommerce_pr.htm','',105)
  LeistungCmenu.makeMenu('sub0603','sub06','&nbsp;WEBPROMOTING','internet_p.htm','',105)
  LeistungCmenu.makeMenu('sub0604','sub06','&nbsp;MAILSERVER','ftgate_info.htm','',105)
LeistungCmenu.makeMenu('sub07','top0','&nbsp;SECURITY','')
  LeistungCmenu.makeMenu('sub0701','sub07','&nbsp;KONZEPTION','security_k.htm')
  LeistungCmenu.makeMenu('sub0702','sub07','&nbsp;FIREWALL','security_f.htm')
  LeistungCmenu.makeMenu('sub0703','sub07','&nbsp;VIRENSCHUTZ','security_v.htm')

LeistungCmenu.construct()		


/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
ServiceCmenu=new makeCM("ServiceCmenu") //Making the menu object. Argument: menuname

ServiceCmenu.frames = 0

//Menu properties   
ServiceCmenu.pxBetween=1
ServiceCmenu.fromLeft= ServiceAbstand
ServiceCmenu.fromTop=AbstandvonOben
ServiceCmenu.rows=1 
ServiceCmenu.menuPlacement="left"
                                                             
ServiceCmenu.offlineRoot="" 
ServiceCmenu.onlineRoot="" 
ServiceCmenu.resizeCheck=1 
ServiceCmenu.wait=Linkwait
ServiceCmenu.fillImg="cm_fill.gif"
ServiceCmenu.zIndex=0

//Level properties - ALL properties have to be spesified in level 0
ServiceCmenu.level[0]=new cm_makeLevel() //Add this for each new level
ServiceCmenu.level[0].width=128
StrichAbstand3=ServiceAbstand + ServiceCmenu.level[0].width - 2
ServiceCmenu.level[0].height=25 
ServiceCmenu.level[0].regClass="clLevel0"
ServiceCmenu.level[0].overClass="clLevel0over"
ServiceCmenu.level[0].borderX=1
ServiceCmenu.level[0].borderY=1
ServiceCmenu.level[0].borderClass="clLevel0border"
ServiceCmenu.level[0].offsetX=0
ServiceCmenu.level[0].offsetY=0
ServiceCmenu.level[0].rows=0
ServiceCmenu.level[0].arrow=0
ServiceCmenu.level[0].arrowWidth=0
ServiceCmenu.level[0].arrowHeight=0
ServiceCmenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
ServiceCmenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
ServiceCmenu.level[1].width=180
ServiceCmenu.level[1].height=22
ServiceCmenu.level[1].regClass="clLevel1"
ServiceCmenu.level[1].overClass="clLevel1over"
ServiceCmenu.level[1].borderX=1
ServiceCmenu.level[1].borderY=1
ServiceCmenu.level[1].align="right" 
ServiceCmenu.level[1].offsetX=-(ServiceCmenu.level[0].width-2)/2+62
ServiceCmenu.level[1].offsetY=0
ServiceCmenu.level[1].borderClass="clLevel1border"


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
ServiceCmenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
ServiceCmenu.level[2].width=210
ServiceCmenu.level[2].height=22
ServiceCmenu.level[2].regClass="clLevel2"
ServiceCmenu.level[2].overClass="clLevel2over"
ServiceCmenu.level[2].borderX=1
ServiceCmenu.level[2].borderY=1
ServiceCmenu.level[2].align="right" 
ServiceCmenu.level[2].offsetX=0
ServiceCmenu.level[2].offsetY=0
ServiceCmenu.level[2].borderClass="clLevel2border"


/******************************************
Menüeinträge "Service"
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
ServiceCmenu.makeMenu('top0','','SERVICE&nbsp;+&nbsp;SUPPORT','')
  ServiceCmenu.makeMenu('sub01','top0','VIRENWARNUNG','','',100)
    ServiceCmenu.makeMenu('sub0101','sub01','&nbsp;AKTUELLE&nbsp;VIREN','service_vv.htm','_blank',95)
    ServiceCmenu.makeMenu('sub0102','sub01','&nbsp;HOAXES','service_vh.htm','_blank',95)
    ServiceCmenu.makeMenu('sub0103','sub01','&nbsp;TOP&nbsp;TEN','service_vt.htm','_blank',95)	
  ServiceCmenu.makeMenu('sub02','top0','ONLINESUPPORT','','',100)
    ServiceCmenu.makeMenu('sub0201','sub02','&nbsp;DETAILS','support.htm','',150)    
    ServiceCmenu.makeMenu('sub0202','sub02','&nbsp;ZUM&nbsp;SUPPORT','zumsupport.htm','',150)    
    ServiceCmenu.makeMenu('sub0203','sub02','&nbsp;PREISE','datenblaetter/preise-support.pdf','_blank',150)    
ServiceCmenu.construct()		

/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
AktuellesCmenu=new makeCM("AktuellesCmenu") //Making the menu object. Argument: menuname

AktuellesCmenu.frames = 0

//Menu properties   
AktuellesCmenu.pxBetween=1
AktuellesCmenu.fromLeft= AktuellesAbstand
AktuellesCmenu.fromTop=AbstandvonOben
AktuellesCmenu.rows=1 
AktuellesCmenu.menuPlacement="left"
                                                             
AktuellesCmenu.offlineRoot="" 
AktuellesCmenu.onlineRoot="" 
AktuellesCmenu.resizeCheck=1 
AktuellesCmenu.wait=Linkwait
AktuellesCmenu.fillImg="cm_fill.gif"
AktuellesCmenu.zIndex=0

//Level properties - ALL properties have to be spesified in level 0
AktuellesCmenu.level[0]=new cm_makeLevel() //Add this for each new level
AktuellesCmenu.level[0].width=67
StrichAbstand4=AktuellesAbstand + AktuellesCmenu.level[0].width - 2
AktuellesCmenu.level[0].height=25 
AktuellesCmenu.level[0].regClass="clLevel0"
AktuellesCmenu.level[0].overClass="clLevel0over"
AktuellesCmenu.level[0].borderX=1
AktuellesCmenu.level[0].borderY=1
AktuellesCmenu.level[0].borderClass="clLevel0border"
AktuellesCmenu.level[0].offsetX=0
AktuellesCmenu.level[0].offsetY=0
AktuellesCmenu.level[0].rows=0
AktuellesCmenu.level[0].arrow=0
AktuellesCmenu.level[0].arrowWidth=0
AktuellesCmenu.level[0].arrowHeight=0
AktuellesCmenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
AktuellesCmenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
AktuellesCmenu.level[1].width=AktuellesCmenu.level[0].width-2
AktuellesCmenu.level[1].width=65
AktuellesCmenu.level[1].height=22
AktuellesCmenu.level[1].regClass="clLevel1"
AktuellesCmenu.level[1].overClass="clLevel1over"
AktuellesCmenu.level[1].borderX=1
AktuellesCmenu.level[1].borderY=1
AktuellesCmenu.level[1].align="right" 
AktuellesCmenu.level[1].offsetX=-(AktuellesCmenu.level[0].width-2)/2+31
AktuellesCmenu.level[1].offsetY=0
AktuellesCmenu.level[1].borderClass="clLevel1border"


/******************************************
Menüeinträge "Aktuelles"
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
AktuellesCmenu.makeMenu('top0','','AKTUELLES','')
AktuellesCmenu.makeMenu('sub01','top0','&nbsp;FEINSTAUB','')
  AktuellesCmenu.makeMenu('sub0101','sub01','&nbsp;DETAILS','feinstaub.htm','',90)
  AktuellesCmenu.makeMenu('sub0102','sub01','&nbsp;TECHNOLOGIE','feinstaub_t.htm','',90)
  AktuellesCmenu.makeMenu('sub0103','sub01','&nbsp;VIDEO','film.htm','',90)
  AktuellesCmenu.makeMenu('sub0104','sub01','&nbsp;ANFRAGE','anfrage_f.htm','',90)
AktuellesCmenu.makeMenu('sub02','top0','&nbsp;GREEN IT','')
  AktuellesCmenu.makeMenu('sub0201','sub02','&nbsp;DETAILS','greenit.htm','',90)
  AktuellesCmenu.makeMenu('sub0202','sub02','&nbsp;KONZEPTION','greenit_k.htm','',90)
  AktuellesCmenu.makeMenu('sub0203','sub02','&nbsp;ORIENTIERUNG','greenit_o.htm','',90)
AktuellesCmenu.construct()		

/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

//Menu object creation
AnfrageCmenu=new makeCM("AnfrageCmenu") //Making the menu object. Argument: menuname

AnfrageCmenu.frames = 0

//Menu properties   
AnfrageCmenu.pxBetween=1
AnfrageCmenu.fromLeft= AnfrageAbstand
AnfrageCmenu.fromTop=AbstandvonOben
AnfrageCmenu.rows=1 
AnfrageCmenu.menuPlacement="left"
                                                             
AnfrageCmenu.offlineRoot="" 
AnfrageCmenu.onlineRoot="" 
AnfrageCmenu.resizeCheck=1 
AnfrageCmenu.wait=Linkwait
AnfrageCmenu.fillImg="cm_fill.gif"
AnfrageCmenu.zIndex=0

//Level properties - ALL properties have to be spesified in level 0
AnfrageCmenu.level[0]=new cm_makeLevel() //Add this for each new level
AnfrageCmenu.level[0].width=89
StrichAbstand5=AnfrageAbstand + AnfrageCmenu.level[0].width - 2
AnfrageCmenu.level[0].height=25 
AnfrageCmenu.level[0].regClass="clLevel0"
AnfrageCmenu.level[0].overClass="clLevel0over"
AnfrageCmenu.level[0].borderX=1
AnfrageCmenu.level[0].borderY=1
AnfrageCmenu.level[0].borderClass="clLevel0border"
AnfrageCmenu.level[0].offsetX=0
AnfrageCmenu.level[0].offsetY=0
AnfrageCmenu.level[0].rows=0
AnfrageCmenu.level[0].arrow=0
AnfrageCmenu.level[0].arrowWidth=0
AnfrageCmenu.level[0].arrowHeight=0
AnfrageCmenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
AnfrageCmenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
AnfrageCmenu.level[1].width=AnfrageCmenu.level[0].width-2
AnfrageCmenu.level[1].width=110
AnfrageCmenu.level[1].height=22
AnfrageCmenu.level[1].regClass="clLevel1"
AnfrageCmenu.level[1].overClass="clLevel1over"
AnfrageCmenu.level[1].borderX=1
AnfrageCmenu.level[1].borderY=1
AnfrageCmenu.level[1].align="right" 
AnfrageCmenu.level[1].offsetX=-(AnfrageCmenu.level[0].width-2)/2+20
AnfrageCmenu.level[1].offsetY=0
AnfrageCmenu.level[1].borderClass="clLevel1border"


/******************************************
Menüeinträge "Anfrage"
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
AnfrageCmenu.makeMenu('top0','','ANFRAGE','anfrage.htm')
AnfrageCmenu.construct()		

//Ausgabe der Striche hinter den einzelnen pull-down-Menüs, Reihenfolge von links nach rechts
document.write("<DIV STYLE='position:absolute; width:10; left:"+StrichAbstand1+"; top:"+(AbstandvonOben+2)+"; z-index:1; text-align: left'><FONT FACE='Arial' STYLE='border-right: 1pt white solid' COLOR='#FFFFFF'>.</FONT></DIV>")
document.write("<DIV STYLE='position:absolute; width:10; left:"+StrichAbstand2+"; top:"+(AbstandvonOben+2)+"; z-index:1; text-align: left'><FONT FACE='Arial' STYLE='border-right: 1pt white solid' COLOR='#FFFFFF'>.</FONT></DIV>")
document.write("<DIV STYLE='position:absolute; width:10; left:"+StrichAbstand3+"; top:"+(AbstandvonOben+2)+"; z-index:1; text-align: left'><FONT FACE='Arial' STYLE='border-right: 1pt white solid' COLOR='#FFFFFF'>.</FONT></DIV>")
document.write("<DIV STYLE='position:absolute; width:10; left:"+StrichAbstand4+"; top:"+(AbstandvonOben+2)+"; z-index:1; text-align: left'><FONT FACE='Arial' STYLE='border-right: 1pt white solid' COLOR='#FFFFFF'>.</FONT></DIV>")


window.onresize = neuAufbau;
Weite = Fensterweite();
Hoehe = Fensterhoehe();


