<!--

function zemez(){
var zemes = document.getElementById("zemes");
var pred = document.getElementById("pred");

var hodnota = "+420";

if(zemes.selectedIndex==1 || zemes.selectedIndex==0){
hodnota = "+420";
}


if(zemes.selectedIndex==2){
hodnota = "+421";
}

pred.innerHTML=hodnota;
}

function smaz(){
var keyword = document.getElementById("keyword");
keyword.setAttribute("value","");
}


function sendform(odkaz,id){

var eform=document.getElementById("eform");

var hodnota=document.getElementById("send_adresa");

var hodnota2=document.getElementById("send_id");

eform.style.display="block";

hodnota.value=odkaz;
hodnota2.value=id;

}

function vypni_sendform(){
var eform=document.getElementById("eform");

eform.style.display="none";
}

function obrazky(){
var obrazky = document.getElementById("obrazky");
obrazky.style.display="block";
}

function vypni_obrazky(){
var obrazky = document.getElementById("obrazky");
obrazky.style.display="none";
}

function popis(){
var popis = document.getElementById("popis_produkt");

var stav = popis.style.display;

if(stav!="block"){
popis.style.display="block";
}else{
popis.style.display="none";
}
}



// iframe ošetření

var xmlhttp;

function zobraz()
{

xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
	alert ("Váš prohlížeč je zastaralý a nedokáže zobrazit toto okno.");
	return;
  }
var url="./iframe.html";
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET",url,true);
xmlhttp.setRequestHeader("Content-Type","text/html; charset=windows-1250"); 
xmlhttp.send();
}


function stateChanged()
{
if (xmlhttp.readyState==4)
{
document.getElementById("fcb").innerHTML=xmlhttp.responseText;
}
}



function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}

function start(){
zobraz();
}



//-->
