window.onresize = KunVisibility;


function KunVisibility()
{

  if (dejSirku() > 1000) {
    document.getElementById("kun").style.visibility="visible";

  }
  else {
    document.getElementById("kun").style.visibility="hidden";
  }
}

function dejSirku() {
if (window.innerWidth)
/* NN4 a kompatibilní prohlížeče */
return window.innerWidth;
else if
(document.documentElement &&
document.documentElement.clientWidth)
/* MSIE6 v std. režimu */
return document.documentElement.clientWidth;
else if
(document.body && document.body.clientWidth)
/* starší MSIE + MSIE6 v quirk režimu */
return document.body.clientWidth;
else
return null;
}
