var preVa2="";
function expandContentBold2(id)
{  	
	if(preVa2!="" && preVa2!=id)
	{
		document.getElementById("bullet_"+preVa2).src="../images/info_on.gif";
		//alert(id);
		//document.getElementById("a"+preVa2).className="normal";
		document.getElementById("w"+preVa2).className="text_hidden";
		preVal="";
	}
	val=((document.getElementById("w"+id).className)=="text_hidden")? true:false;
	if(val)
	{
		//alert(id);
		document.getElementById("bullet_"+id).src="../images/info_off.gif";
		//document.getElementById("a"+id).className="hand";
		document.getElementById("w"+id).className="text_visible";
		
	}
	else
	{
		document.getElementById("bullet_"+id).src="../images/info_on.gif";
		//document.getElementById("a"+preVa2).className="normal";
		document.getElementById("w"+id).className="text_hidden";
	}
	preVa2=id;
}
