// JavaScript Document
   // checks the <strong class="highlight">browser</strong> type to see if it is <strong class="highlight">firefox</strong>
   if (navigator.appName.indexOf('Netscape') != -1)
   {
       // changes the position accordingly
      document.getElementById('container').style.top 
      = "815px";
    }
