function Player(name){
	Navigation=window.open(name, "Navigation", "height=150,width=300");
	Navigation.focus();
}

function einblenden() {
document.getElementById("subnavlist").style.display = "block";
}

function ausblenden() {
document.getElementById("subnavlist").style.display = "none";
}


var arImages=new Array();
function Preload() {
 var temp = Preload.arguments; 
 for(x=0; x < temp.length; x++) {
  arImages[x]=new Image();
  arImages[x].src=Preload.arguments[x];
 }
}

function open_fenster(ort,name,w,h)
  {
   Fenster = window.open(ort,name,'width='+w+',height='+h);
   Fenster.moveTo(20,20);
   Fenster.focus ()
  }

function NewsFenster (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "width=420,height=420,scrollbars=yes");
  Fenster1.focus();
}

