/* ThinkQuest International 2006
	The DReaMers - DRM: Two Sides of the Story
	addLoadEvent.js
	--------------------------------------------
	Copyright: You may use this script for non-commercial purposes,
	but must acknowledge the team.
	--------------------------------------------
	Last Revised: 04/01/06
*/

function addLoadEvent(func)
//Allow functions to be called when page loads
{
  var oldonload=window.onload;
  if (typeof window.onload != 'function')
  {
    window.onload=func;
  }
  else
  {
    window.onload=function()
	{
	  oldonload();
	  func();
	}
  }
}