// JavaScript Document
<!--
function popitupcenter(url, w, h) {
var left = Math.round(screen.width/2 - w/2);
var top = Math.round(screen.height/2 - h/2);
//window.alert(optstring);
newwindow = window.open(url, "Mausland Multiplayer", "width="+w+",height="+h+",top="+top+",left="+left+",resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no");
if(window.focus) {newwindow.focus()}
return false;
}
// -->