function stripTags(comments) {
       a = comments.indexOf("<");
       b = comments.indexOf(">");
       len = comments.length;
       c = comments.substring(0, a);
       if(b == -1)
        b = a;
        d = comments.substring((b + 1), len);
        comments = c + d;
        tagCheck = comments.indexOf("<");
        if(tagCheck != -1)
            comments = stripTags(comments);
            return comments;
}
