function Js_String_Trim(value)
{
    value = String(value);
    
    return value.replace(/^\s+/ig, "").replace(/\s+$/ig, "");
}
