// show hide functions

function DoShowHeb(tid1,tid2) {
//showtid, hidetid, tid
document.getElementById(tid1).style.display = "none";  //hides tid1 - english
document.getElementById(tid2).style.display = "";      //shows tid2 - hebrew
}

function DoShowEng(tid1,tid2) {
//hidetid, tid, showtid
document.getElementById(tid1).style.display = "none";  //hides tid1 - hebrew
document.getElementById(tid2).style.display = "";      //shows tid2 - english
}


