//  Select the proper cell width depending on screen dimensions - currently handles 1024 and 800

    {
      if (screen&&(screen.height>700))
      {
        document.write('<td valign="top" bgcolor="#FFFFFF" width="850">');
      }
      else
      {
        document.write('<td valign="top" bgcolor="#FFFFFF" width="664">');
      }
    }

