onload = function(){
    for(var i = 0; i < document.links.length; i++){
       if (document.links[i].rel == 'external'){
          document.links[i].target = '_blank';
     }
}
}

function pokazUkryj(id)
{
document.getElementById(id).style.display = (document.getElementById(id).style.display == "none") ? "block" : "none";
}