var zobr_t = "mene";
function zobraz(newsonuvod){
  if (document.getElementById){

    document.getElementById(zobr_t).style.textDecoration = "underline";
    document.getElementById(zobr_t).style.fontWeight = "bold";

    if (zobr_t=='vice') {
      rozmer=4*6+0.25;
      zobr_t='mene';
    } else {
    if (zobr_t=='mene') {
      rozmer=4*newsonuvod+0.25;
      zobr_t='vice';
    } }

    document.getElementById(zobr_t).style.textDecoration = "none";
    document.getElementById(zobr_t).style.fontWeight = "normal";

    document.getElementById('v1').style.height = rozmer+'em';
    document.getElementById('v2').style.height = rozmer+'em';
    document.getElementById('v3').style.height = rozmer+'em';
    
    return false; // odkaz neproklikne na href
  }
  else {
    if(document.stylesheets) document.stylesheets["zalozky"].disabled = true;
        // v nekterych browserech (IE 4) vypne styl nezobrazovani, aby se polozky alespon zobrazily
    return true; // odkazy budou proklikavat na href
  }
}