
///////// newFullScreen_function ///////

function fullwin(where){
   var newwin = window.open('http://www.k-sieben.de/sonyericsson/countdown.php',"newwin",'fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + screen.width + ',height=' + screen.height);
   newwin.moveTo(0,0);newwin.focus();
 }

///////// PopUp_function ///////
var options;
function openWin(url, name, width, height)
{
options = 'width=' + width + ','
+ 'height=' + height + ','
+ 'toolbar=0,'
+ 'location=0,'
+ 'directories=0,'
+ 'status=0,'
+ 'menubar=0,'
+ 'scrollbars=auto,'
+ 'resizable=1';
var xPosition = (screen.width - width)/2;
var yPosition = (screen.height - height)/2;
options += ','+ 'screenx=' + xPosition + ',' //NN
+ 'screeny=' + yPosition + ',' //NN
+ 'left=' + xPosition + ',' //IE
+ 'top=' + yPosition; //IE
window.open(url, name, options);
//parent.mitte.location.href="goodbye.htm";
}