﻿function GetTagDescript(strTag){
	switch(strTag)
	{
		case "未解决":
			strTag="<font color=red>未解决</font>";
			break;
		case "已解决":
			strTag="<font color=blue>已解决</font>";
			break;
	}
	return strTag;
}

function ShowTag(strTag)
{
    document.write(GetTagDescript(strTag));
}