<!--

//window.onload   = initPage;
//window.onresize = initPage;

function initPage(pageHeight) {
	
  // Get paragraph height
 // var paragraph =  document.getElementById('paragraphID');
 // var paragraphHeight   = paragraph.offsetHeight;
  //pageHeight = 550;
  // Get browser window height
  var windowHeight = getWindowHeight();
if (windowHeight > pageHeight)
{
  // Set paragraph area on page
  //paragraph.style.position = 'absolute';
  fixIt = document.getElementById('shadow');
  //newWidth = "10px";
  fixIt.style.top = ((windowHeight - pageHeight) / 2) + 'px';
  //paragraph.style.top = ((windowHeight - paragraphHeight) / 2) + 'px';
  }
}

function getWindowHeight() {
  var windowHeight = 0;
	
  if (typeof(window.innerHeight) == 'number')
    windowHeight = window.innerHeight;
  else {
    if (document.documentElement && document.documentElement.clientHeight)
      windowHeight = document.documentElement.clientHeight;
    else {
      if (document.body && document.body.clientHeight)
        windowHeight = document.body.clientHeight; }; };
	
  return windowHeight;
};

-->
