/* DATEI: zv.efa.js */


/* Javascript ZVON für EFA-Auskunft 10-2005 */
/* Copyright by ISS-Oberlausitz */
/* Author: T.Hojenski */

function request_change(formular,befehl,v) {
   if (befehl == 'control_options') {
      //document.forms[formular].itdLPxx_showOptions.value = v;
      document.forms[formular].ptOptionsActive.value = v;
      document.forms[formular].execInst.value = 'readOnly';
   }
   if (befehl == 'control_help') {
      //document.forms[formular].itdLPxx_showOptions.value = v;
      document.forms[formular].pthelpActive.value = v;
      document.forms[formular].execInst.value = 'readOnly';
   }
   if (befehl == 'changeRequest') {
      //document.forms[formular].itdLPxx_showOptions.value = v;
      //document.forms[formular].pthelpActive.value = v;
      document.forms[formular].command.value = v;
      //document.forms[formular].execInst.value = 'readOnly';
   }
   if (befehl == 'delfi') {
      document.forms[formular].sessionID.value = '0';
      document.forms[formular].requestID.value = '0';
      document.forms[formular].execInst.value = 'readOnly';
   }
   if (befehl == 'change_origin') {
      var dat = v.split("|");
      if (dat[0] == 'notidentified') dat[0] = '';
      document.forms[formular].place_origin.value      = dat[0];
      document.forms[formular].placeState_origin.value = 'notidentified';
      document.forms[formular].name_origin.value       = dat[1];
      document.forms[formular].nameState_origin.value  = 'notidentified';
      document.forms[formular].type_origin.value       = 'stop';
      document.forms[formular].execInst.value          = 'readOnly';

      //document.forms[formular].sessionID.value = '0';
      //document.forms[formular].requestID.value = '0';
      //document.forms[formular].execInst.value = 'readOnly';
   }
   if (befehl == 'change_destination') {
      var dat = v.split("|");
      if (dat[0] == 'notidentified') dat[0] = '';
      document.forms[formular].place_destination.value      = dat[0];
      document.forms[formular].placeState_destination.value = 'notidentified';
      document.forms[formular].name_destination.value       = dat[1];
      document.forms[formular].nameState_destination.value  = 'notidentified';
      //document.forms[formular].type_destination.value       = 'stop';
      document.forms[formular].execInst.value               = 'readOnly';
   }

   document.forms[formular].submit();
}