﻿function SetLTR(obj) {
    obj.style.direction = "ltr";
}
function SetRTL(obj) {
    if (obj.value.length == 0)
        obj.style.direction = "rtl";
}
