var Dom = YAHOO.util.Dom;

function showCText(target, el){
	Dom.setStyle(target, "display", "block");
	Dom.setStyle(el, "font-weight", "bold");
}

function hideCText(target, el){
	Dom.setStyle(target, "display", "none");
	Dom.setStyle(el, "font-weight", "normal");
}

