/**
 * This function launches the help
 * link for the report page.
 *
 */
function help(page) {
    var options = 'scrollbars=yes,width=640,height=480,resizeable=yes,directories=no,location=no,menubar=no,status=yes,toolbar=no,alwaysraised=yes';

    mywin = open(page, "help", options);
    mywin.focus();
}

