// FUNKCE PRO VYPLNENI FORMULARE
function vypln(id, default_value, value)
{
  if(value == default_value || value == '')
  {
    document.getElementById(id).value = default_value;
  }
  else
  {
    document.getElementById(id).value = value;
  }
}

// FUNKCE PRO POCATECNI VYMAZANI FORMULARE
function smaz(id, default_value, value)
{
  if(value == default_value || value == '')
  {
    document.getElementById(id).value = '';
  }
  else
  {
    document.getElementById(id).value = value;
  }
}

// FUNKCE PRO SKRYTI/ZOBRAZENI ZNACEK
function zobrazznacky()
{
  if(document.getElementById('content_brands_list').style.display == "block" && document.getElementById('content_brands_footer').style.display == "block")
  {
    document.getElementById('content_brands_list').style.display = "none";
    document.getElementById('content_brands_footer').style.display = "none";
  }
  else
  {
    document.getElementById('content_brands_list').style.display = "block";
    document.getElementById('content_brands_footer').style.display = "block";
  }
}

// FUNKCE PRO ZOBRAZENI BOOKMARKU
function open_bookmark(id)
{
  seznam = document.getElementById('content_detail_bookmarks_menu').getElementsByTagName('li');

  // Zobrazeni jednotlivych obsahu  
  for(i = 0; i < seznam.length; i++)
  {
    document.getElementById('bookmark' + (i+1)).style.display = "none";
    document.getElementById('bookmark_button' + (i+1)).className = "content_detail_bookmarks_noshadow";
  }
  document.getElementById('bookmark' + id).style.display = "block";
  // Prvni tlacitko
  if(id != 1)
  {
    document.getElementById('bookmark_button1').className = "content_detail_bookmarks_noshadow";
  }
  // Posledni tlacitko
  if(id != seznam.length)
  {
    document.getElementById('bookmark_button' + (id + 1)).className = "content_detail_bookmarks_shadow";
  }
  // Aktivni tlacitko
  document.getElementById('bookmark_button' + id).className = "content_detail_bookmarks_active";
}

// Schování fakturační adresy u objednávek
function schovej_fakturacni_adresu(schovej) {
	var o; var oid='fakturacniadresatabulka'; // id prvku ke skryti
	// nejdriv najdeme prvek
	if(document.getElementById) o=document.getElementById(oid); // moderni prohlizece
	else if(document.all) o=document.all[oid]; // IE6 a starsi
	else return; // nepodporovano, stary Netscape uz neresim, konec
	if(!o) return; // prvek nenalezen (neni na strance, tj. je jina stranka nez s fakturacni adresou), konec
	// schovej puvodni hodnotu
	if(typeof o.style.oldDisplay=='undefined') o.style.oldDisplay=o.style.display;
	// skryj nebo zobraz podle pozadavku (st=0 zobraz, st=1 skryj)
	o.style.display=(schovej?'none':o.style.oldDisplay);
}

window.onload=function() { schovej_fakturacni_adresu(true); } // skryj fakturacni adresu  pri onload