function GetElmnt(e) 
 {
  return document.getElementById(e) ? document.getElementById(e) : false;
 }

function show_foto(llnnkk,id,lang,deflang)
 {
  GetElmnt('fotobig').innerHTML = '';
  fot = new Array();
  fot = document.createElement('spaw');
  fot.innerHTML = '<img src="'+llnnkk+'" alt="">';
//  fot.id = 'block[' + gal[i].index + ']';
  GetElmnt('fotobig').appendChild(fot);
  $.post('./modules/get_desc.php',{id: id, lang: lang, deflang: deflang},function(data){$('#descr').html(data);});
  $.post('./modules/get_title.php',{id: id, lang: lang, deflang: deflang},function(data){$('#title').html(data);});
 }

//show_foto(gal[0].pic);

