var rozbaleno;

function showMessage(text) {
  box=document.getElementById('msg');
  if(rozbaleno==true) {
    clearTimeout(casovac);
    for(i=0;box.childNodes[i];i++) {
      box.removeChild(box.childNodes[i]);
    } 
    box.style.display='none'; 
  }
  box.style.display='block';
  prepareBox(1, text);
  rozbaleno=true;
}

function prepareBox(heightValue, text) {
  var box=document.getElementById('msg');
  var zprava=document.createTextNode(text);
  box.style.height=heightValue+'px';
  if(heightValue<30) {
    casovac=setTimeout("prepareBox("+(heightValue+1)+", '"+text+"')", 20);
  }
  else { 
    box.appendChild(zprava); 
    casovac=setTimeout("hideBox("+heightValue+")", 5000);       
  }  
}

function hideBox(heightValue) {
  box=document.getElementById('msg');
  for(i=0;box.childNodes[i];i++) {
    box.removeChild(box.childNodes[i]);
  }
  box.style.height=heightValue+'px';  
  if(heightValue>0) {
    casovac=setTimeout("hideBox("+(heightValue-1)+")", 20);  
  }
  else {
    box.style.display='none'; 
    rozbaleno=false;   
  }

}
