﻿/*
sd == ShowDiv
Used to show/hide a div explicitly
d = ID of the object to show/hide
b = 1/0 (show/hide)
*/
function sd(d, b) {
    var obj;
    obj = document.getElementById(d); if (obj) { obj.style.display = (b != "1" && b != "true") ? "none" : ""; }
}