﻿function menu( co )
{
	if (co!='out')
		{
			document.getElementById('menu-'+co).style.display=''
			document.getElementById('pol-'+co).className='menu-'+co+'-hover'
		}
	else
		{
			document.getElementById('menu-ubytovani').style.display='none'
			document.getElementById('menu-zajezdy').style.display='none'
			document.getElementById('menu-lm').style.display='none'
			document.getElementById('menu-letenky').style.display='none'
			document.getElementById('menu-plavby').style.display='none'
			document.getElementById('menu-napoveda').style.display='none'
			document.getElementById('menu-onas').style.display='none'

			document.getElementById('pol-ubytovani').className='menu-ubytovani'
			document.getElementById('pol-zajezdy').className='menu-zajezdy'
			document.getElementById('pol-lm').className='menu-lm'
			document.getElementById('pol-letenky').className='menu-letenky'
			document.getElementById('pol-plavby').className='menu-plavby'
			document.getElementById('pol-napoveda').className='menu-napoveda'
			document.getElementById('pol-onas').className='menu-onas'
		}
};

function hledani( co )
{
	document.getElementById('parametry').className='skryte'
	document.getElementById('parametry-CIS').className='skryte'
	
	document.getElementById(co).className=''
	
  if (co=='parametry-CIS'){
     document.getElementById('vyhledavani-cislo').className='skryte'
     document.getElementById('vyhledavani-zakladni').className=''
  }
  else{
     document.getElementById('vyhledavani-cislo').className=''
     document.getElementById('vyhledavani-zakladni').className='skryte'
  }
};

function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
	   do {
			  curleft += obj.offsetLeft;
			  curtop += obj.offsetTop;
        } while (obj = obj.offsetParent);
 	
  return [curleft, curtop];
  }
};

function informace( co )
{
	document.getElementById('informace-destinace').className='polozka'
	document.getElementById('informace-kurzy').className='polozka'
	document.getElementById('informace-kontakt').className='polozka'
	document.getElementById('informace-'+co).className='polozka hover'


	document.getElementById('panel-obsah-destinace').style.display='none'
	document.getElementById('panel-obsah-kurzy').style.display='none'
	document.getElementById('panel-obsah-kontakt').style.display='none'
	document.getElementById('panel-obsah-'+co).style.display=''
};


function setFav(odkaz, pageTitle, pageAddress)
{
  if (document.all && !window.opera)   // jedna se o IE
  {
    window.external.AddFavorite(pageAddress, pageTitle);
    return false;
  }

  else if (window.opera && window.print)  // jedna se o Operu
  {
    // Pouze zmeni title odkazu,
    // k oblibenym se stranka ulozi diky atributu rel.
    // Jako popisek by se normalne pouzila hodnota atributu title
    // v danem odkazu, ale to my nechceme, proto ho zmenime
  
    odkaz.title = pageTitle;
    window.alert("Budete muset odznačit zaškrtávací políčko 'Show in hotlist panel'");
    return true;
  }

  else if (window.sidebar && window.sidebar.addPanel)
  {	
    // jedna se o prohlizece na bazi Mozzily
    // je lepsi se zeptat a uvest veci na pravou miru:
    if (window.confirm("Přidat stránku jako nový panel?"))  
    {
      // prida stranku jako sidebar, ne k oblibenym!!!!
      window.sidebar.addPanel(pageTitle, pageAddress, ""); 
      return false;
    }
  }

  window.alert("Lituji, ale nezdařilo se mi přidat " + 
               "stránku k vašim oblíbeným položkám, " + 
               "budete si ji asi muset zařadit ručně " + 
               "(např. stiskem kláves Ctrl-D).");
  return false;
}

function otevriOkno(url) {
  try {if (okno) {okno.close()};}
  catch(e){}
  finally {}  
  okno = window.open ('', 'okno', 'toolbar=0,scrollbars=0,status=0,menubar=0,directories=no,location=no,resizable=1,width=640,height=480');
  okno.document.write ('<html><head><title>Fotografie</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><link rel="Stylesheet" href="styles.css" type="text/css" media="screen,projection" /></head><body style="padding: 10px"><img name="img" alt="Zvětšená fotografie" onclick="window.close();"" src="' + url + '" onload="javascript:window.resizeTo(document.images[0].width+40,document.images[0].height+130);"/><p class="c">Okno zavřete kliknutím na fotografii</p></body></html>');
  okno.focus();
  return false;
}
