function swaptabs (showthis,hidethis) { 
var style2 = document.getElementById(showthis).style;style2.display = "block"; 
var style3 = document.getElementById(hidethis).style;style3.display ="none";
}

function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}
function blockError(){return true;}
window.onerror = blockError;

