﻿
function resizeAPHResultsTable() {

    //RESIZE THE APH RESULTS TABLE
    var querystring = window.location.href;
    var standtype = querystring.split("=");

    if (standtype[1] == "aph" || standtype[1] == "aph03" || standtype[1] == "aph46" || standtype[1] == "aph79" || standtype[1] == "aph10") {
        $("#aphMain").height($("#main").height() - $("#aphHeader").height() - $("#aphTableHeader").height() - 40);
    }

}
