function removeHTMLtags(evnt, control) {
    var kcode = evnt.keyCode;
    if (kcode == 188 || kcode == 190) {
        control.value = control.value.replace('>', '?');
        control.value = control.value.replace('<', '?');
    }
}
