/*	Turn on/off invisible DIVS */


function TurnOn(tid) {
document.getElementById(tid).style.display = "";
}
function TurnOff(tid) {
document.getElementById(tid).style.display = "none";
}