window.onload = function pr() {
 if (document.getElementById && document.createElement) {

  var li=document.createElement('li');
      li.setAttribute('id','tiskico');

  var a=document.createElement('a');
      a.setAttribute('href','javascript:window.print()');
      a.setAttribute('onclick','window.print();return false');
      a.setAttribute('title','chci si vytisknout tento článek! (můžete také použít příkaz TISK/PRINT ve Vašem prohlížeči)');
  
  var t=document.createTextNode('Vytisknout');
  
  a.appendChild(t);
  li.appendChild(a);
  
  document.getElementById('helpnavi').appendChild(li);
  
  }
}