
function MailWindowOpen (url,name,width,height) 
  {
  var options = '';

  <!-- options -->
  options = options + 'width=' + width + ',';
  options = options + 'height=' + height + ',';
  options = options + 'resizable=no';

  <!-- window -->
  popupWin = window.open (url, name, options);
  popupWin.opener.top.name = "opener";
  }
  


function MailWindowParentRedirect (url) 
  {
  window.opener.location.href = url; 
  self.close() 
  }
  


function MailWindowShake() 
  {
  var i;
  
  if (parent.moveBy) 
    {
    for (i=35; i>0; i--) 
      {
      parent.moveBy (i, 0);
      parent.moveBy (-i, 0);
      }
    }
  }


