// JavaScript Document
var act_opis=0;
var men_txt = document.getElementById('descr').innerHTML;
function opis(obj){
if( !obj ){
  document.getElementById('descr').innerHTML=men_txt;
  return;
  }
  did="d"+obj.id;
  document.getElementById('descr').innerHTML=document.getElementById(did).innerHTML;
  }
function standard(id,v,obj_id){
  o=document.getElementById(id);
  o.value=v;
  licz(o);
  act_opis=obj_id;
  }
function actopis(){
  if( act_opis ){
    opis(document.getElementById(act_opis));
    }
  else
    opis(0);
  }


