/* Bildschirmmitte definieren*/
var bildschirmx = screen.availWidth;
var bildschirmy = screen.availHeight;
var hoehe = 500;
var breite =650;
var fensterx = 200;
var fenstery = hoehe;

var startx = Math.round((bildschirmx / 2)
- (breite / 2) - 10);

var starty = Math.round((bildschirmy / 2)
- (fenstery / 2) - 20);
/*hier wird das Fenster geöffnet*/
 function fenster() {
win = window.open("./O-Wurf.html", "neu", "width=" + breite + ", height=" + hoehe + ", status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=" + startx + ", left=" + startx + ", screenY=" + starty + ", top=" + starty + " ");
win.focus();
}
 function fenster1() {
win = window.open("./P-Wurf.html", "neu", "width=" + breite + ", height=" + hoehe + ", status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=" + startx + ", left=" + startx + ", screenY=" + starty + ", top=" + starty + " ");
win.focus();
}
 function fenster2() {
win = window.open("????", "neu", "width=" + breite + ", height=" + hoehe + ", status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=" + startx + ", left=" + startx + ", screenY=" + starty + ", top=" + starty + " ");
win.focus();
}
 function fenster3() {
win = window.open("????", "neu", "width=" + breite + ", height=267, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=" + startx + ", left=" + startx + ", screenY=" + starty + ", top=" + starty + " ");
win.focus();
}
 function fenster4() {
win = window.open("?????", "neu", "width=" + breite + ", height=267, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=no, screenX=" + startx + ", left=" + startx + ", screenY=" + starty + ", top=" + starty + " ");
win.focus();
}
 function fenster5() {
win = window.open("?????", "neu", "width=" + breite + ", height=233, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=yes, screenX=" + startx + ", left=" + startx + ", screenY=" + starty + ", top=" + starty + " ");
win.focus();
}

