// Show/Hide a Div
function ShowHide(divSH) {
	if (document.getElementById(divSH)) {
		if (document.getElementById(divSH+'-show').style.display != 'none') {
			document.getElementById(divSH+'-show').style.display = 'none';
			document.getElementById(divSH).style.display = 'block';
		}
		else {
			document.getElementById(divSH+'-show').style.display = 'block';
			document.getElementById(divSH).style.display = 'none';
		}
	}
}
//End Show/Hide a Div