/*
Copyright (c) 2009, Alon Systems, Inc. All rights reserved.
Version: 1.0
*/
//<script type="text/javascript" src="../include/alonglobal.js"></script>

/*
  function: resizeHeight
  parameter:  none
  call: onLoad="resizeHeight();" in body tag
  description: sets the height to the client side browser height
*/
function resizeHeight() {
  document.body.style.height = document.documentElement.clientHeight + "px";
}
