// Expand Div + Change text
function showdiv(divid){
	document.getElementById(divid).style.display = (document.getElementById(divid).style.display == "none") ? "" : "none";
}

function changedivhtml(thisdiv, newhtml){
	document.getElementById(thisdiv).innerHTML = newhtml;
}

// Hide Div
function hidediv(divid){
	document.getElementById(divid).style.display = "none";
}
function unhidediv(divid){
	document.getElementById(divid).style.display = "";
}