/*
* GG_Base.js
* Copyright (c) 2009,  Sam Byrd & Byrdnest Solutions
*
* This code supports the Gould Global system.
*
*/
function reloadTraining() {
    // grab the table
    var progIDSel = document.ProgramSelection.programID;
    var progID = progIDSel.options[progIDSel.options.selectedIndex].value;

    window.location = "training.php?function=list&type=program&programid=" + progID;
    
    return false;
};
