<!--
// Author: Howard Lively [theRamMan@CarolinaFan.com]
// Date:   October 30, 2001
// Dept:   Scholarship & Student Aid - UNC-CH
// Appl:   SSA web site
// Func:   Hide form fields when menus pop up.

function showForm(isOn) {
   if (HM_IE) {

      // for IE 4 and up ....
      document.all("FormObjDiv").style.visibility = isOn ? "visible" : "hidden";

   }
   else
   if (HM_DOM) {

      // for Netscape 6 and up ....
      divForm = document.getElementById("FormObjDiv");
      if (isOn == true) {
         divForm.style.visibility = "visible";
      }
      else {
         divForm.style.visibility = "hidden";
      }

   }
   else {

      // for Netcrap 4.x to 4.78 ....
     document.FormObjDiv.visibility = isOn ? "show" : "hide";

   }
}
//-->