function Init() {
// Iestāda visus nepieciešamos datus ielādējot lapu

if(document.getElementsByTagName) {
  
  //Atlasa un noslēpj TR rindas, kuras izvēršas pēc pieprasījuma
  var allTRs=document.getElementsByTagName("tr");
  //Cycle through the tags and select ones with class
  for (i=0; i<allTRs.length; i++) {
    if (allTRs[i].className=='contactinfo') {
    //Hide appropriate
    allTRs[i].style.display='none';
    }
  }
} //document.getElementById(kkontakti).style.display = "block";
} //End of Init function

function Toggle(trid) {
  if(document.getElementById) {
  var x = document.getElementById(trid);
  if(x.style.display == "none") {x.style.display="";}
  else {x.style.display="none";}
  }

return(false);
}

function trig() {
// return(false);
}

