// JavaScript Document
function ToggleView(currItem) {
	if (document.getElementById) {
		thisItem = document.getElementById(currItem).style;
		if (thisItem.display == "block") {
			thisItem.display = "none";
		} else {
			thisItem.display = "block";
		}
		return false;
	} else {
		return true;
	} 
}