/* Screenshot Popups -- I think. */

var subwindow;
function popupWindow(aDocument) {
        subwindow = window.open(aDocument,"popup",'width=640,height=480,scrollbars=no,resizable=no');
        subwindow.document.location.href = aDocument;
        subwindow.focus();
}

var subwindow2;
function popupWindow2(aDocument) {
        subwindow2 = window.open(aDocument,"popup",'width=640,height=480,scrollbars=yes,resizable=yes');
        subwindow2.document.location.href = aDocument;
        subwindow2.focus();
}

var subwindow3;
function popupWindow3(aDocument) {
        subwindow3 = window.open(aDocument,"popup",'width=480,height=360,scrollbars=no,resizable=no');
        subwindow3.document.location.href = aDocument;
        subwindow3.focus();
}

/* Game Popups */
function lexi_popup (){
    var props = "toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable,alwaysRaised,dependent,titlebar=no";
    var p = window.open("/lexicastle/play_now.php","_blank", "width=602,height=374," + props);
    return true;
}

function leemo_popup (){
    var props = "toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable,alwaysRaised,dependent,titlebar=no";
    var p = window.open("/leemo/play_now.php","_blank", "width=690,height=462," + props);
    return true;
}

