// Rollover für mainmenu-Links  Navigationsebene 1





function high(LinkObject)        {


        LinkObject.style.background='#ffeb99';


        LinkObject.style.border='solid';


        LinkObject.style.borderWidth='1px';


        LinkObject.style.borderColor='#ffeb99';


}








function low(LinkObject)        {


        LinkObject.style.background='#ffcc00';


        LinkObject.style.border='solid';


        LinkObject.style.borderWidth='1px';


        LinkObject.style.borderColor='#ffcc00';


}





// Rollover für navigationsebene 2 und 3





function high2(LinkObject)        {


        LinkObject.style.background='#ffeb99';


        LinkObject.style.border='solid';


        LinkObject.style.borderWidth='1px';


        LinkObject.style.borderColor='#ffeb99';


}








function low2(LinkObject)        {


        LinkObject.style.background='#ffe373';


        LinkObject.style.border='solid';


        LinkObject.style.borderWidth='1px';


        LinkObject.style.borderColor='#ffe373';


}







// Rollover für globale Navigation


function highglobal(LinkObject)        {


        LinkObject.style.background='#cce5ff';


        LinkObject.style.border='solid';


        LinkObject.style.borderWidth='1px';


        LinkObject.style.borderColor='#cce5ff';


}





function lowglobal(LinkObject)        {


        LinkObject.style.background='#99ccff';


        LinkObject.style.border='solid';


        LinkObject.style.borderWidth='1px';


        LinkObject.style.borderColor='#99ccff';


}





// windowopen funktion


var page_properties = new Array();





page_properties[ "childWin" ] = "";


page_properties[ "childWinClosed" ] = true;








function winopen(url, height, width, scrollbar)


{


  if ( page_properties[ "childWin" ].closed == true )


  {


          page_properties[ "childWinClosed" ] = true;


  }


  else if ( page_properties[ "childWinClosed" ] == false )


  {


          page_properties[ "childWin" ].close();


        page_properties[ "childWinClosed" ] = true;


  }


  var h_center = ( screen.height - height ) / 2;


  var w_center = ( screen.width - width ) / 2;


  if ( scrollbar == true) {


  page_properties[ "childWin" ] = window.open( url , 'another' , 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,toolbar=no,scrollBars=1,scrollbars=yes,resizable=0,resizable=no,top=' + h_center + ',left=' + w_center );


  page_properties[ "childWinClosed" ] = false;


  }


  if ( scrollbar == false) {


  page_properties[ "childWin" ] = window.open( url , 'another' , 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,toolbar=no,scrollBars=0,scrollbars=no,resizable=0,resizable=no,top=' + h_center + ',left=' + w_center );


  page_properties[ "childWinClosed" ] = false;


  }


}