
  var b_Array = new Array();
   b_Array[0] = new Image();  b_Array[0].src = 'Buttons/Start.gif';
   b_Array[1] = new Image();  b_Array[1].src = 'Buttons/Start_over.gif';
   b_Array[2] = new Image();  b_Array[2].src = 'Buttons/Ferien.gif';
   b_Array[3] = new Image();  b_Array[3].src = 'Buttons/Ferien_over.gif';
   b_Array[4] = new Image();  b_Array[4].src = 'Buttons/Gruppe.gif';
   b_Array[5] = new Image();  b_Array[5].src = 'Buttons/Gruppe_over.gif';
   b_Array[6] = new Image();  b_Array[6].src = 'Buttons/Kontakt.gif';
   b_Array[7] = new Image();  b_Array[7].src = 'Buttons/Kontakt_over.gif';
   b_Array[8] = new Image();  b_Array[8].src = 'Buttons/CloseButton.gif';
   b_Array[9] = new Image();  b_Array[9].src = 'Buttons/CloseButton_over.gif';



  function ImageChange(bild, nr, St_Txt){
     document.images[ bild ].src = b_Array[ nr ].src;
     window.status = St_Txt;
  }

  function bWinOpen(href){
   var par ='';
   par += 'width=650,height=500';
   par += ',status=1';
   par += ',mentbar=0';
   par += ',scrollbar=0';
   par += ',resizable=0';
   par += ',toolbar=0';
   par += 'location=0';
   par += 'directories=0';

   bildle = window.open(href, 'Anfahrt', par);
   bildle.status = "Kißlegg im Allgäu";
   bildle.focus();
   return false;
 }

   function sWinOpen(href){
   var par ='';
   par += 'width=450,height=470';
   par += ',status=1';
   par += ',mentbar=0';
   par += ',scrollbar=0';
   par += ',resizable=0';
   par += ',toolbar=0';
   par += 'location=0';
   par += 'directories=0';

   bildle = window.open(href, 'Anfahrt', par);
   bildle.status = "Kißlegg im Allgäu";
   bildle.focus();
   return false;
 }

 function winOpen(href, w, h){
   var par ='';
   par += 'width=' + w
   par += ',height= ' + h;
   par += ',status=0';
   par += ',menubar=0';
   par += ',scrollbar=1';
   par += ',resizable=1';
   par += ',toolbar=0';
   par += ',location=0';
   par += ',directories=0';

   bildle = window.open(href,'Bild',par);
   bildle.moveTo(71,1);
   bildle.focus();
 }

