// open popup window

function showhelp() {
    pw=open("diaghelp.php", "diaghelp",
        "resizable=yes,screenX=0,screenY=0,width=400,height=500,alwaysRaised=yes,scrollbars=yes,left=0,top=0");
    pw.focus();
}

function n3help(name) {
    url = "n3help.php#" + name;
    pw=open(url, "n3help",
        "resizable=yes,screenX=0,screenY=0,width=400,height=500,alwaysRaised=yes,scrollbars=yes,left=0,top=0");
    pw.focus();
}

function arthelp() {
    pw=open("arthelp.html", "arthelp",
        "resizable=yes,screenX=0,screenY=0,width=400,height=500,alwaysRaised=yes,scrollbars=yes,left=0,top=0");
    pw.focus();
}

function showproblem(id) {
    url = "showproblem.php?mpid=" + id;
    pw=open(url, "showproblem",
        "resizable=yes,screenX=0,screenY=0,width=400,height=500,alwaysRaised=yes,scrollbars=yes,left=0,top=0");
    pw.focus();
}

/*function lounch(app) {
    d = new Date;
    url = app + ".php?&px=" + d.getTime();
    pw=open(url, "MPNet_Passtime",
        "resizable=yes,screenX=0,screenY=0,width=760,height=600,alwaysRaised=yes,scrollbars=yes,toolbar=yes,left=32,top=32");
    pw.focus();
}*/

