// JavaScript Document

function HideContent(d) {
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
 document.getElementById(d).style.display = "block" ;
}
function CancelDisplay(d){
	document.getElementById(d).style.height = "90px";
}

function ReverseDisplay(d) {
if(document.getElementById(d).style.height == "5px") { document.getElementById(d).style.height = "90px"; }

else { document.getElementById(d).style.height = "5px"; }
}


