function TextAreaControl_KeyDown(control){var tabKeyCode = 9;var spaceKeyCode = 32;if ((event.keyCode == tabKeyCode) && (event.srcElement == control)){control.selection = document.selection.createRange();control.selection.text = String.fromCharCode(tabKeyCode);event.returnValue = false;}}
