function ChgFntWeight (classid)
{
var elem = document.all(classid).style;
elem.fontWeight="800";
}

function DspNormalFntWeight(classid)
{
var elem = document.all(classid).style;
elem.fontWeight="normal";
}
