
 /**
 *  Other objects actions
 * (C) ICSoft, http://www.icsoft.ru
 *
 * author Egor Stremousov
 * version 1.0
 */


 /* OTHER OBJECTS EVENTS */

 function _onOtherChange(e, eId){
  document.getElementById(eId).value = e.value;
 }

 function _onOtherKeyUp(e, event, form, eId ){
  _onOtherChange(e, eId);
  if ( event.keyCode == 13 ) { document.getElementById(form).submit(); }
 }

