// JavaScript Document

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 ChangeImage(image)
  {
  var image;
  //document.getElementById('obrazek-velky').src= image;
  document.getElementById('img_nahled').src = image;
  image = image.replace( "detail" , "detailmax" );
  document.getElementById('img_link').href = image;
  }

  function checkAuth() {
    
    if( checkLogin() == false ) {
      
      alert( 'Přihlašovací jméno obsahuje nepovolené znaky!' );
      
      return false;
      
    }
    
    if( checkPass() == false ) {
      
      alert( 'Přihlašovací heslo musí obsahovat alespoň 4 znaky!' );
      
      return false;
      
    }

    return true;
    
  }
  
function pocitadlo(ref,res1,res2)
  {
  document.write('<img src="/pocitadlo.php?referer='+ref+'&amp;screen='+res1+'x'+res2+'" alt="counter" width="1" height="1" />');
  }

