/////////////////////////////////////////////////////////////////
//
//  Alpine Meadow Productions  
//
//  Donn Ault
//  Copyright (C) 2009 All Rights Reserved
//  www.alpinemeadow.com
//
/////////////////////////////////////////////////////////////////

function UpperBlock (BaseURL,BackgroundImageURL)
{
  var contents = "";

  contents = contents + '<div id = "TopMenu">';
  contents = contents + '    <img id="AMPTitle"  src = "'+BaseURL+'media/AMPTitle.png">';

  contents = contents + '    <div id = "QuickJump"></div>';

  contents = contents + '    <a href = "'+BaseURL+'Notepad.html">';
  contents = contents + '      <img id="MadeWithNotePad"  src = "'+BaseURL+'media/notepad.gif" border=0>';
  contents = contents + '    </a>';

  contents = contents + '</div>';

  contents = contents + '<div id = "banner">';
  contents = contents + '  <div id = "LogoRegion">';
  contents = contents + '    <img id="Globe"  src = "'+BaseURL+'media/AMPLogo(Earth).gif">';
  contents = contents + '    <img id="Logo"   src = "'+BaseURL+'media/AMPLogo.png">';
  contents = contents + '  </div>';
  contents = contents + '</div>';

  contents = contents + '<div id = "PageTitle">';
  contents = contents + '</div>';

  var UCDiv = document.getElementById ("PageBanner");
  UCDiv.innerHTML = contents;

  var TargetDiv = document.getElementById ("banner");

  TargetDiv.style.backgroundImage = 'url("'+BackgroundImageURL+'")';

}
