/**
 * Other objects actions
 * 
 * @author Egor Stremousov
 * @version 2.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)
	{
		if (e.onPressEnter)
		{
			e.onPressEnter();
		}
	}
}

