function popUnder(url, height, width) {
    var locator = window.open(url, "game", "scrollbars=0,location=0,toolbar=0,status=0,menubar=0,directories=0,resizable=0,height="+height+",width="+width);
    locator.blur();
    setTimeout(function(){locator.focus();}, 10000)
}

function popUp(url, height, width) {
    var locator = window.open(url, "game", "scrollbars=0,location=0,toolbar=0,status=0,menubar=0,directories=0,resizable=0,height="+height+",width="+width);
}


