var time = 6000		// Zeit, bis das Bild wechselt
var bild = new Array();
bild[0] = "header/header_4.jpg"; 
bild[1] = "header/header_5.jpg"; 
bild[2] = "header/header_6.jpg";

var narf = "1";
function bildwechseln() {
  document.wechselbild.src = bild[narf];
  narf++;
  if (narf == bild.length) {
    narf = 0;
  }
  setTimeout("bildwechseln()",time);
}


function openWindow(SITE,WIDTH,HEIGHT){ 	// Öffnet beliebiges Pop-Up Fenster
  var popup = window.open(SITE,'','toolbar=no,location=no,directories=no,'
                        +'status=no,menubar=no,scrollbars=yes,resizable=no,'
                        +'width='+(WIDTH+20)+',height='+(HEIGHT+20)+',left=100,top=100');
  popup.window.focus();
}