﻿function HtmlDecode(str)
{
    str = str.replace(/&91;/g, '[');
    str = str.replace(/&93;/g, ']');
    
    return str;
       
}

