////
// top.js : holds all script required to be run before all other script.
////
var gaBodyLoadScript = new Array();

function AddOnLoadScript(sScript,iDelay)
{
    if(iDelay==null) iDelay = 0;
    gaBodyLoadScript[gaBodyLoadScript.length] = sScript;
    gaBodyLoadScript[gaBodyLoadScript.length] = iDelay;
}
