//  - open/hide function


 function ohideshow(secretObj) {
var secretObj = document.getElementById(secretObj);
	if (secretObj.style.display == "none") {
  	   secretObj.style.display = "block";
  	   }
else {
  secretObj.style.display = "none";
  }
}
