
  // ----------NEW WINDOW FOR "E-MAIL"-----

  leftPos = 0;
  topPos = 0;

  if (screen)
  {
    leftPos = screen.width-200;
    topPos = screen.height-200;
  }

  function newwindowEmail()
  {
    emailWindow = window.open('email.html', 'emailWin', 'width=175,height=25,left='+leftPos+',top='+topPos+',toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
    emailWindow.focus();
  }

