// Show/Hide DIV

function showOrHide() 
          {
              var div = document.getElementById("showOrHideDiv");
              if (div.style.display == "block") 
              {
                  div.style.display = "none";
              }
              else 
              {
                  div.style.display = "block";
              }
          } 
		  
// Comments

<!--
	function clearBox(box) {
		 if(box.value==box.defaultValue) {
	 	 	 box.value = "";
	 	 }
	 }
//-->
