﻿function GetTagDescript(strTag){
    switch(strTag)
    {
    case "未解决":
        strTag="<font color=red>未解决</font>";
        break;
    case "已解决":
        strTag="<img src='http://cdn2.iconfinder.com/data/icons/icojoy/noshadow/standart/gif/24x24/001_06.gif'>"
+"<font color=blue>已解决</font>";
        break;
    default:
        break;
    }
    return strTag;
}

function ShowTag(strTag)
{
    document.write(GetTagDescript(strTag));
}
