/*** MAIN.JS **/
var dhtml = document.getElementById ? true : false;

function setDisplay(element,newVisibility) {
  if (dhtml) {
  	document.getElementById(element).style.display = newVisibility;
  }
}
function setVisibility(element,newVisibility) {
  if (dhtml) {
  	document.getElementById(element).style.visibility = newVisibility;
  }
}
function popis(id) {
  if (dhtml) {
	window.open('popis.php?id='+id,'_self');
	return false;	
  }
}

/* FAVORIT */
function AddFavorite(linkObj,addUrl,addTitle) 
{  
   if (opera) 
  { 
    linkObj.title = addTitle; 
    return true; 
  } 
   window.external.AddFavorite(addUrl,addTitle); 
   return false;  
  
} 