function zobraz_foto(id_produkt,id_foto){
  var retezec;
  
  retezec = "/foto_detail.php?id_produkty="+ id_produkt +"&id_foto=" + id_foto;
  
  var xmlhttp=false;
  
  try{
    xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
  }
  catch(e){
  	try{
      xmlhttp = new
      ActiveXObject('Microsoft.XMLHTTP');
    }
    catch(E){
      xmlhttp=false;
    }
  }
  
  if(!xmlhttp && typeof XMLHttpRequest!='undefined')
    xmlhttp = new XMLHttpRequest();
  
  xmlhttp.open('GET',retezec,true);
  
  xmlhttp.onreadystatechange=function(){
    if(xmlhttp.readyState==4){
      var content = xmlhttp.responseText;
      
		  document.getElementById("seznam_foto").innerHTML=content;
    }
  }
  
  xmlhttp.send(null)
  return;
}