// ISOLINE Default JavaScript Document :: By ITN Solutions

function shb(what) {
   if(document.getElementById(what).style.display=="none") {
     document.getElementById(what).style.display="block";
   } else {
     document.getElementById(what).style.display="none";
   }   
 }
