﻿$(".a_need_help").ready(function() {
    $(".a_need_help").click(function() {    
        window.open("/Pages/Help/", "mywindow", "menubar=0,status=0,location=0,scrollbars=yes,resizable=1,width=675,height=350"); 
        return false;
    });
});

function refreshParent() {
    window.opener.location.href = window.opener.location.href;

    if (window.opener.progressWindow) {
        window.opener.progressWindow.close()
    }
    window.close();
}

function parentPageRedirect(page) {
    window.opener.location.href = page;

    window.focus();
}
