﻿function makeEnglishEditor(tAria){
    activeTextAreaInstance = document.getElementById(tAria);
    activeTextAreaInstance.onkeypress = function (){}; 
    activeTextAreaInstance.onkeydown = function (){}; 
    activeTextAreaInstance.onkeyup = function (){};
    activeTextAreaInstance.onfocus = function(){};
}

