Probier's mal so…
Flash:
PHP-Code:
btn_Up.onRelease = function() {
getURL("javascript:Launch('hauptseite.html', 0, 0)");
};
JS:
PHP-Code:
function Launch(page, width, height) {
if (0 == width) {
width = document.width;
}
if (0 == height) {
height = document.height;
}
OpenWin = this.open(page, "hauptseite",
"toolbar=no, menubar=no, location=no, scrollbars=no, resizable=no,
width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\"");
}