// JavaScript Document

function hideObject(id)
{
	var eHide = document.getElementById(id);
	if (eHide == null) return false;

	eHide.style.visibility='hidden';
	eHide.style.display='none';
}

function showObject(id)
{
	var eShow = document.getElementById(id);
	if (eShow == null) return false;

	eShow.style.visibility='visible';
	eShow.style.display='';
}

function switchMenu(name)
{
  document.getElementById('vyber').value = name;
}

function openDetail(url, width, height, GUID){

  Picture = window.open( url + "?GUID=" + GUID, "Obrazek", "toolbar=no, location=no, directories=no, status=no, nemubar=no, scrollbar=yes, rezisable=yes, copyhostory=no, width="+ width +", height="+ height +", top=50, left=50");

}


function zalozka(title,url)
{
  if(window.sidebar){ window.sidebar.addPanel(title,url,"");}
  else if(document.all){ window.external.AddFavorite(url,title);}
  else if(window.opera&&window.print){return true;}
}
