function showMe (it, box) {
var vis = (box.checked) ? "block" : "none";
document.getElementById(it).style.display = vis;
}

function showstuff(showthis){
   document.getElementById(showthis).style.display='';
}

function hidestuff(hidethis){
   document.getElementById(hidethis).style.display = 'none';
}