function toggle(el) {
	var togObj = document.getElementById(el);
	//if (togObj.style.display == "block" || togObj.style.display == "" ) {
	if (togObj.style.display == "block") {
		togObj.style.display = "none";
	}
	else {
		togObj.style.display = "block";
	}
}
