function PopUp(URL)
{
    var Fensteroptionen = "titel='pop',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
    var Name = "popWin";
    var Breite = 955;
    var Hoehe = 600;
    
   	window.open(URL, Name, Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}

function printPopUp(URL)
{
    var Fensteroptionen = "titel='pop',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
    var Name = "popWin";
    var Breite = 680;
    var Hoehe = 600;
    
   	window.open(URL, Name, Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
}


function livePopUp()
{
	window.open('http://liveticker.fscplive.de/?id='+escape(document.URL),'kick_ticker','resizable=no,width=300,height=400');
}

function winOpen(url, breite, hoehe)
{
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = yes,fullscreen = no,top ="+oben+",left ="+links);
}