/*********************************************************************************************************
  These function used to add function calls to the onload of a page
  DEPENDS ON: setting the <body onload=""> value to runLoadScripts();
*********************************************************************************************************/
var aOnLoadObjects = new Array( );
      
function addLoadScript( funString )
{
  aOnLoadObjects.push( funString );
}

function runLoadScripts( )
{
  for ( var i = 0; i < aOnLoadObjects.length; i++ )
  {
     eval( aOnLoadObjects[i] );
  }
}


