dom = (document.getElementById)? true : false;
function showPhoto(foto,alt,fotka) {
if(fotka=='')fotka='foto';
if (dom){ document.getElementById(fotka).style.display = "block";document.getElementById(fotka).src= "images/"+foto;/*document.getElementById(fotka).alt= alt;*/}
else {document.all[fotka].style.display = "block";document.all[fotka].src= "images/"+foto;/*document.all[fotka].alt= alt;*/}
}

