  ns4 = document.layers && true;
  msie = document.all && true;


      function tableWorkaround(cols) { if (document.all) { document.write('<tr>'); for (var i = 0; i < cols; i++) { document.write('<td></td>'); } document.write('</tr>') }; }
      function tableWorkaround2_colheader() { if (document.all) { document.write('<col width="0">') }; }
      function tableWorkaround2(rowHeight) { if (document.all) { document.write('<td height="' + rowHeight + '">'); document.write('</td>') }; }


 ns4 = document.layers && true;
  msie = document.all && true;
  function init() {
    center();
  }
  function getPageWidth() {
    if (ns4)
      return window.innerWidth;
    else
      return document.body.clientWidth;
  }

  function move(e, x) {
    if (msie)
      document.all[e].style.left = x;
    else if (ns4)
      document.layers[e].left = x;
    else if (document.getElementById)
      document.getElementById(e).style.left = x;
  }

  function center() {
    move('e0', Math.max(getPageWidth() - 900, 0) / 2 + 112);
    move('e1', Math.max(getPageWidth() - 900, 0) / 2 + 750);
    move('e2', Math.max(getPageWidth() - 900, 0) / 2 + 1);
    move('e5', Math.max(getPageWidth() - 900, 0) / 2 + 165);
    move('e7', Math.max(getPageWidth() - 900, 0) / 2 + 30);
  }

