function usad()
{
var vyska=document.getElementById("stranka").scrollHeight-16;
var oknovyska=oknoH()-16;
if (vyska<oknovyska)
	{
		document.getElementById("ukonceni").style.display="block";
		document.getElementById("dolnistin").style.display="none";
	}
else
	{
		document.getElementById("ukonceni").style.display="none";
		document.getElementById("dolnistin").style.display="block";
	}
}

function oknoH() {
   if (window.innerHeight)
      /* NN4 a kompatibilní prohlížeče */
      return window.innerHeight;
   else if
   (document.documentElement &&
   document.documentElement.clientHeight)
      /* MSIE6 v std. režimu - Opera a Mozilla
      již uspěly s window.innerHeight */
      return document.documentElement.clientHeight;
   else if
   (document.body && document.body.clientHeight)
      /* starší MSIE + MSIE6 v quirk režimu */
      return document.body.clientHeight;
   else
      return null;
}