function closa (what) {
 document.getElementById("sub"+what).style.display = "none";
}

function comka (what,total) {

  var x=what.id;

 if (document.getElementById("sub"+what).style.display != "block") {
  document.getElementById("sub"+what).style.display = "block";
  for (i=1; i<=total; i++) if (what != i) closa(i);
 }
 else {
  document.getElementById("sub"+what).style.display = "none";
 }


}

function meska () {
  document.getElementById('meska').style.display = "none";
}

function openbox10() {
       document.getElementById('photoform').style.display='block';
}