function AddFavorite(linkObj,addUrl,addTitle)
{
  if (document.all && !window.opera)
  {
    window.external.AddFavorite(addUrl,addTitle);
    return false;
  }
  else if (window.opera && window.print)
  {
    linkObj.title = addTitle;
    return true;
  }
  else if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function'))
  {
    if (window.confirm('Přidat oblíbenou stránku jako nový panel?'))
    {
      window.sidebar.addPanel(addTitle,addUrl,'');
      return false;
    }
  }
  window.alert('Po potvrzení stiskněte CTRL-D,\nstránka bude přidána k vašim oblíbeným odkazům.');
  return false;
}

function popup(location,w,h,jmeno)
  {
   var p;
   p="copyhistory,width="+w+",height="+h+",left=0,top=0,scrollbars=1,menubar=1"
   msg=open(location, jmeno, p);
  }


function showhide(xhd)
{

	if (document.getElementById(xhd).style.display=='none')
		document.getElementById(xhd).style.display='';
	else
		document.getElementById(xhd).style.display='none';
}

function mai_lto(f) {
	var re = /\[at]/gi;
	var addr = f.innerHTML.replace(re,'@');
	f.href = 'mai'+'lt'+'o:'+addr;
	return true;
}



