function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}


function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "inline";
}



function HideContentx(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}


function ShowContentx(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}


function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}





function show_box1_tab1(){
     
     ShowContentx('t1')
     HideContentx('t2')
     HideContentx('t3')
   
    }


function show_box1_tab2(){
     
     ShowContentx('t2')
     HideContentx('t1')
          HideContentx('t3')

   
    }

function show_box1_tab3(){
     
     ShowContentx('t3')
     HideContentx('t1')
          HideContentx('t2')

   
    }





function show_box2_tab1(){
     
     ShowContentx('b1')
     HideContentx('b2')
   
    }


function show_box2_tab2(){
     
     ShowContentx('b2')
     HideContentx('b1')
   
    }

