function ballanceDIV(divID1, divID2)
{
  var tab1 = document.getElementById(divID1);
  var tab2 = document.getElementById(divID2);
  	
  if(tab1 != null && tab2 != null)
  {
      var divHeight1 = tab1.clientHeight;
      var divHeight2 = tab2.clientHeight;
      
      if(divHeight2 > divHeight1)
      {
        return tab1.style.height = divHeight2 + 177 + "px";
      }
      
      if(divHeight1 > divHeight2)
      {
        return tab2.style.height = divHeight1 - 177 + "px";
      }
  }
}

function saveMail(name, topdomain, domain)
{
  var mail = '';
  mail += '<a href="mailto:';
  mail += name;
  mail += '@';
  mail += topdomain;
  mail += '.';
  mail += domain;
  mail += '"';
  mail += 'class="ContactEmail">'+name+'@'+topdomain+'.'+domain+'</a>';
 
  document.write(mail);
 
}
