﻿

window.onload = function(){
changeFeesTable(0)
}

function changeFeesTable(cID){

	xmlHttp=GetXmlHttpObject()
 
    if (xmlHttp==null)
    {
        alert ("Browser does not support HTTP Request")
        return;
    } 
    var url="ajax/ajax_fess.asp?cID="+cID
    
    xmlHttp.onreadystatechange=stateChangedFees
    xmlHttp.open("GET",url,true)
    xmlHttp.send(null)    
} 


function stateChangedFees() 
{ 

    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
    { 
        
        var response=xmlHttp.responseText;
       
        document.getElementById('feesTable').innerHTML = response;
        
   } 
} 
