window.onload = function()
{
    var oLeft = document.getElementById("MiddleLeft");
    var oRight = document.getElementById("MiddleRight");
    
    if(oLeft.offsetHeight > oRight.offsetHeight)
        oRight.style.height = oLeft.offsetHeight-10 + "px";
    else
        oLeft.style.height = oRight.offsetHeight + "px";
    
}

function antispam(user,domain,subject,bodytext)
  {
  if(subject == null)
    subject=" ";
  if(bodytext == null)
    bodytext=" ";        
  document.write('<a href="mailto:' + user + '&#64;' + domain + '?subject=' + subject + '&body=' + bodytext + '">'); 
  document.write(user + '&#64;' + domain + '</a>');
  }
  
