function ShowContent(i,h)
{
	d=document.getElementById(i);
	if (d.style)
	{
		if (d.style.visibility=='hidden')
		{
			d.style.visibility = "visible";
			d.style.height = h;
		}
		else
		{
			d.style.visibility = "hidden";
			d.style.height = "1px";		
		}
	}
	else
	{
		if (d.visibility == "hidden")
		{
			d.visibility = "visible";
			d.height = h;
		}
		else
		{
			d.visibility = "hidden";
			d.height = "1px";		
		}
	}
}