/**
 * Program: GEEVS
 * File: $Name:  $
 * Checked In: $Date: 2002/08/02 17:35:59 $
 * Version: $Revision: 1.1 $
 * Author: $Author: margot $
 */

/**
 * This function determines the browser type and version
 * and updates the banner accordingly.
 */

function setBanner() {
   if (document.getElementById&&!document.all) {
      // Netscape 6+
      var bannerTable = document.getElementById("bannerTable");
      bannerTable.setAttribute("border","0");
      var bannerParent = document.getElementById("bannerTR");
      var banner = document.getElementById("bannerTD");
      bannerParent.removeChild(banner);
      var firstTD = document.createElement("td");
      firstTD.setAttribute("HEIGHT","50");
      firstTD.setAttribute("WIDTH","100%");
      firstTD.setAttribute("ALIGN","LEFT");
      firstTD.setAttribute("VALIGN","TOP");
      firstTD.setAttribute("background","../images/MatchMinerNetscape.jpg");
      bannerParent.appendChild(firstTD);
      var text = document.createTextNode(".");
      firstTD.appendChild(text);
   } if (document.all) {
      // IE
      var bannerTable = document.getElementById("bannerTable");
      bannerTable.setAttribute("border","0");
      var bannerParent = document.getElementById("bannerTR");
      var banner = document.getElementById("bannerTD");
      bannerParent.removeChild(banner);
      var firstTD = document.createElement("td");
      firstTD.setAttribute("HEIGHT","50");
      firstTD.setAttribute("WIDTH","350");
      firstTD.setAttribute("ALIGN","LEFT");
      firstTD.setAttribute("VALIGN","TOP");
      firstTD.setAttribute("NOWRAP","");
      firstTD.setAttribute("background","../images/MatchMiner.jpg");
      bannerParent.appendChild(firstTD);
      var secondTD = document.createElement("td");
      secondTD.setAttribute("HEIGHT","50");
      //secondTD.setAttribute("WIDTH","90%");
      secondTD.setAttribute("ALIGN","RIGHT");
      secondTD.setAttribute("VALIGN","TOP");
      secondTD.setAttribute("background","../images/MatchMinerBannerSlice.jpg");
      bannerParent.appendChild(secondTD);
   }
}