﻿
//show hide stuff
function showstuff(boxid){ document.getElementById(boxid).style.display="table-cell"; }
function hidestuff(boxid){ document.getElementById(boxid).style.display="none"; }

