var DEBUG_FLAG = false;
function debugAlert(str)
{
    if(DEBUG_FLAG)
        alert(str);
}

function goToLogin()
{
    window.location.href = "../login/login.php";
}

function sortTables()
{
    var table = "";

    table = document.getElementById("orgFeeTable");
    if(table)
        Table.sort(table, {'colIndex':0, 'rowShade':'alternate'});

    table = document.getElementById("gameRankTable");
    if(table)
        Table.sort(table, {'colIndex':0, 'rowShade':'alternate'});

    table = document.getElementById("minAgeRulesTable");
    if(table)
        Table.sort(table, {'colIndex':1, 'rowShade':'alternate'});

    table = document.getElementById("gradeRatioRulesTable");
    if(table)
        Table.sort(table, {'colIndex':0, 'rowShade':'alternate'});

    table = document.getElementById("maxAssnRulesTable");
    if(table)
        Table.sort(table, {'colIndex':0, 'rowShade':'alternate'});
}
