function more(x)
{
var elmt = document.getElementById(x);
 if (elmt.className == "expandable")
 	{
 elmt.className = "expanded";
 	}
 else
 	{
 elmt.className = "expandable";
 	}
}
