
// create a popup window
function newPopup(jsTarget, jsWidth, jsHeight) {
    if (jsWidth == null) {
        jsWidth = 600;
    }

    if (jsHeight == null) {
        jsHeight = 400;
    }

    window.open(jsTarget,"","width=" + jsWidth + ",height=" + jsHeight + ",dependent=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,dependent=yes");
}

// create a popup window with menu
function newMenuPopup(jsTarget, jsWidth, jsHeight) {
    if (jsWidth == null) {
        jsWidth = 600;
    }
    if (jsHeight == null) {
        jsHeight = 400;
    }

    window.open(jsTarget,"","width=" + jsWidth + ",height=" + jsHeight + ",dependent=yes,toolbar=no,menubar=yes,location=no,scrollbars=yes,resizable=no,dependent=yes");
}

// refresh the page
function returnFromPopup()
{
	location.href="/cgi-bin/applicants.cgi$refreshLink";
}

