// Show/Hide Divs

function HideContent(d) {
document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
document.getElementById(d).style.display = "";
}

function ReverseContentDisplay(d) {
if(document.getElementById(d).style.display == "none") {
document.getElementById(d).style.display = "";
}
else {
document.getElementById(d).style.display = "none";
}
}




// Only allows one div open script
var intCurrentOpenID = "initialDiv";


function showOneDiv(thisID){
//First hide the currently open div 
document.getElementById(intCurrentOpenID).style.display = "none";
 //Then open the div that u want to show
document.getElementById(thisID).style.display = "";
 //Set the ID to the variable
intCurrentOpenID = thisID;
}
