// JavaScript Document
function getDocs(scr) {
    doQuery(scr,'DocsContent');
}

function onLoading(contentDiv) {
    document.getElementById(contentDiv).innerHTML = "Loading...";
}

function doQuery(url, contentDiv) {
AjaxRequest.get(
  {
    'url':url
    ,'onLoading':onLoading(contentDiv)
    ,'onSuccess':function(req) {
            document.getElementById(contentDiv).innerHTML = req.responseText;
        }
  }
);}

// End of Script


