/*  Copyright (c) 2000, 2009, Oracle. All rights reserved. 
    ToolsRel: 8.50.05 */

function getScrollX()
{
  return document.body.scrollLeft;
}

function getScrollY()
{
  return document.body.scrollTop;
}

if (document.getElementById == null)
{
  document.getElementById = function(str) {return null;};
}