// JavaScript Document

//popupfenster -> zur Zeit nur Pressestimmen
function popup(url,name,einstellungen){window.open(url,name,einstellungen);}

//spiel PopUp
function PopUpSpiel() {
 SpielFenster =
 window.open("img/spiel/index.shtml", "Spiel", "width=850,height=800,scrollbars");
 SpielFenster.focus();
 }
  
//Download PopUp
function PopUpDownload( url ) {
 DownloadFenster =
 window.open(url, "Download", "width=400,height=220");
 DownloadFenster.focus();
 } 

  
