// JavaScript Document
function popis(popis){ 
var e;
e=document.getElementById('popis_tlac');
e.popisek.value=popis; 
} 

function el_focus(id) //fokus prvku
{
var e;
e=document.getElementById(id);
e.style.backgroundColor = '#e0f0ff';
}

function el_blur(id) //ztráta fokusu prvku
{
var e;
e=document.getElementById(id);
e.style.backgroundColor = '#f5f5f5';
}


