<?php
header('Content-type: application/javascript');
?>
function changePanel (newPanel) {
  turnOffAll();
  var thisObj = eval("document.getElementById('" + newPanel + "').style");
  thisObj.display = "inline";
}


function turnOffAll() {
  <?php
    //if(!$GLOBALS["fields"]) return false;
    if(is_array($GLOBALS["fields"])) {
      foreach($GLOBALS["fields"] AS $panelName => $panelData) {
        echo('  var thisObj = eval("document.getElementById(\'' . $panelName . '\').style");');
        echo("\r\n");
        echo('  thisObj.display = "none";');        
        echo("\r\n");
      }
    }
  ?>   
}
