<!--

// Beginn Funktionen für Popups
function newWindow( strURL, intWidth, intHeight )
    {
    var intX  = ( screen.width / 2 ) - ( intWidth / 2 );
    var intY  = ( screen.height / 2 ) - ( intHeight / 2 );
    var xWindow = window.open( strURL, '','left=' + intX + ',top=' + intY +',width=' + intWidth + ',height=' + intHeight + ',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,toolbar=0,status=0,scrollbars=no,border=no');
    }

function newWindowPos( strURL, intWidth, intHeight, intX, intY )
    {
    var xWindow = window.open( strURL, '','left=' + intX + ',top=' + intY +',width=' + intWidth + ',height=' + intHeight + ',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,toolbar=0,status=0,scrollbars=no,border=no');
    }
// Ende Funktionen für Popups