// JavaScript Document

function show_obr(src)
{
  obr = document.getElementById('obr_big');
  obr.style.visibility = 'hidden';
  obr.src=src;
}

function show_objednani(odkaz)
{
  odkaz.style.display="none";
  document.getElementById("objednani").style.display="block";
}

function show_sluzby()
{
  document.getElementById("sluzby_short").style.display="none";
  document.getElementById("sluzby_long").style.display="block";
}

function show_obr_win(obr)
{
  win = window.open("obr.php?file="+obr, "_blank", "width=650,height=700,resizable=yes");
}

