//zjisteni IE prohlizece a dany do globalni promenne
var IE= null;
var ua = navigator.appName.toLowerCase();
if(ua.indexOf('explorer')>-1 ) {IE=true;}
var objItem;


//----Cookies-------
function SaveCookies(Name, Value, Validity){
	var Cas = new Date();
	Validity = Validity*86400000;
	Cas.setTime(Cas.getTime()+Validity);
	document.cookie=Name+"="+escape(Value)+"; expires="+Cas.toGMTString()+"; path=/";
}
function LoadCookies(Name)
{
	var Data = " "+document.cookie+";";
	var NameCookies = " "+Name+"=";
	var End, Result;
	var Begin = Data.indexOf(NameCookies);
	if (Begin!=-1){
		Begin+=NameCookies.length;
		End = Data.indexOf(";", Begin);
		Result = Data.substring(Begin, End);
		Result = unescape(Result);
	} else {
		Result = 0;
	}
	return Result;
}
//-----------------

//----ride text----
function SlideShowTip(strTextTip){
	var intIndex;
	var arrText;
	var intLenght;
	arrText = strTextTip.split("$");
	intLength = arrText.length;
	intIndex = parseFloat(LoadCookies("RideTextTip"));
	if (intIndex > intLength-2){intIndex = 0;}

	document.getElementById('Nastip').innerHTML = arrText[intIndex];
 	intIndex += 1;
	SaveCookies("RideTextTip", intIndex, 1);
	setTimeout('SlideShowTip(strTextTip)',7000);
}

function SlideShowTip2(strTextTip2){
	var intIndex;
	var arrText;
	var intLenght;
	arrText = strTextTip2.split("$");
	intLength = arrText.length;
	intIndex = parseFloat(LoadCookies("RideTextTip2"));
	if (intIndex > intLength-2){intIndex = 0;}

	document.getElementById('Nastip2').innerHTML = arrText[intIndex];
 	intIndex += 1;
	SaveCookies("RideTextTip2", intIndex, 1);
	setTimeout('SlideShowTip2(strTextTip2)',5000);
}

//--------------


function VymazText()
{
	if( document.getElementById('searchtext').value == 'hledané slovo') {
		document.getElementById('searchtext').value='';
	}
}


function zobraz(typ)
{
	if( typ == 'osobni') {
		document.getElementById('oddil').innerHTML = "<div class='kos_odber'><div class='nadpis'>Podrobnosti o vyzvednutí</div><div class='telo'>Zboží si vyzvednete přímo v naší provozovně. Zboží je placeno hotově a je dostupné ihned.</div></div>";
	}

	if( typ == 'postou') {
		document.getElementById('oddil').innerHTML = "<div class='kos_odber'><div class='nadpis'>Podrobnosti o přepravě</div><div class='telo'>Zboží Vám zašleme prostřednictvím České Pošty jako obchodní balík do 48 hodin od potvrzení zakázky. V případě, že nebudete v době doručování zastiženi na uvedené adrese, bude Vaše zásilka uložena po dobu 7 dnů na Vaší poště.<br /><br /><span style='color: red; font-weight: bold;'>Poštovné : 119,-</span></div></div>";
	}
}

function OpenUrl(strURL,nW,nH,sScroll){
	var objWin = window.open(strURL,"Info","scrollbars="+sScroll+",resizable=yes,height="+nH+"px,width="+nW+"px,left=10px,top=10px");
	return (typeof(objWin)!="object")?true:false;
}

function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; 
} 

function ProtiBotum() {
  if (document.forms[0].protibotum && document.getElementById("spamprotibotum")) {
    document.getElementById("protibotum").value="5";
    document.getElementById("spamprotibotum").style.display = "none";
  }
}

function windowopen(page, pagename) {
  var x = window.open(page, pagename, 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=yes, resizable=yes, status=no, width=600,height=500,top=20,left=20')
  x.focus()
  return x;
}

function addLoadEvent(func)
{	
  var oldonload = window.onload;
  if (typeof window.onload != 'function'){
    window.onload = func;
  } else {
    window.onload = function(){
      oldonload();
      func();
    }
  }
}


addLoadEvent(ProtiBotum);

