// You can send this script functions you want run once the page loads 
// Add OnLoad Functions
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}
// Example of the Call to the script
// Should be placed after all other header scripts are declared just before the </head> close tag
/*

//Stack your function: calls without prams
addLoadEvent(someFuctionNoPrams);
addLoadEvent(nameOfSomeFunctionToRunOnPageLoadNoPrams);
// OR Functions with Prams values passed
addLoadEvent(function() {
 alternateTables("dataTable","oddRow","evenRow");
});

*/


