function popupWindow(lnk, h, w) {
    var topOffset = (screen.height - h) / 2;
    var leftOffset = (screen.width - w) / 2;
    settings = 'width=' + w + ',height=' + h + ',top=' + topOffset + ',left=' + leftOffset + ',scrollbars=1,resizable=1';
    name = '_blank';
    var win = window.open(lnk, name, settings);
}

function newWindow(lnk) {
    var win = window.open(lnk, "fullscreen");
}

function hideSubmit(hideElId, showElId) {
    $("#" + hideElId).hide();
    $("#" + showElId).show();
}