function mail(name, domain, style) { //thanks to Andrey "Chips" Kuzmin
  document.write('<a h'+'ref="'+'mai'+ 'lto:'+name+'@'+domain+'" style="'+style+'">'+name+'@'+domain+'</a>');
}

$(document).ready(function(){
    $('div.ub_text em').css('display','block');
    $('div.ub_text em').css('font-style','normal');
    $('div.ub_text em').hide();
    $('div.ub_text').children('em').before('<span class="hlp">&hellip;</span>');
    $('div.ub span.link').click( function() {
        $(this).parent('div.ub_podr').parent('div.ub').children('div.ub_text').children('span.hlp').toggle();
        $(this).parent('div.ub_podr').parent('div.ub').children('div.ub_text').children('em').toggle();
    });
    
    
});
