
var Obj;
function expand(cid){
	ShowHide(cid);
}
function ShowHide(el)
{
	Obj = eval("ShowHide"+el);

	if(Obj.style.display == "none")
		{
		Obj.style.display = "block";
		}
	else
		{
		Obj.style.display = "none";
		}
}

