<?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;
    foreach($GLOBALS["fields"] AS $panelName => $panelData) {
      echo('  var thisObj = eval("document.getElementById(\'' . $panelName . '\').style");');
      echo("\r\n");
      echo('  thisObj.display = "none";');        
      echo("\r\n");
    }
  ?>   
}