function neuesFenster() {
// Die Gr”áe des Fensters
var popUpSizeX=800;
var popUpSizeY=600;

// Die Position des Fensters
var popUpLocationX=10;
var popUpLocationY=10;

// URL zum Fenster
// var popUpURL="http://www.apcc.com/template/size/apc/rslr/index.cfm?ISOCountryCode=DE";
var popUpURL="/POWERPROT/apc/ups-selector.htm";
splashWin = window.open("",'x','toolbar=0,location=0,directories=0,menubar=0,scrollbars=yes,resizable=yes');

//splashWin.blur();
// window.focus();

splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=popUpURL;
splashWin.focus();
}


