var onLoadFunctions = [];

function rr(e)
{
}

function ro(e)
{
}

function getEl(eName)
{
  if (typeof(eName) == "string")
  {
    return document.getElementById(eName)
  } 
  else 
  {
    return eName
  }
}

function addOnLoadFn(fName)
{
  onLoadFunctions[onLoadFunctions.length] = fName;
}

function onLoad()
{
  for(i=0; i < onLoadFunctions.length; i++)
  {
    if (typeof(onLoadFunctions[i]) == "string")
    {
      eval(onLoadFunctions[i] + "()");
    } 
    else
    {
      eval(onLoadFunctions[i]());
    }
  }
}
function enterCell(cell, pwd) {
}

function leaveCell(cell, text, pwd) {
}
