function zmenObrazek( id, naObrazek ) {

    if (document.layers) {
        //window.alert(document.layers['dayFrom'].value);
    }
    else if (document.all) {
        var tenObrazek = document.all[id];
    }
    else if (document.getElementById) {
        var tenObrazek = document.getElementById(id);
    }

    if ( tenObrazek && naObrazek ) {
      tenObrazek.setAttribute('src', naObrazek);
    }

    return true;
}
