	var sDiv=""
	var inEm = 1
	var mClick = 1
	
function pndo(x, portal, button)
{
	if(mClick==1)
	{
		sDiv = x;
		
		if (sDiv.style.height=="auto")
		{
			sDiv.style.height="1px";
			sDiv.style.overflow="hidden"
			button.src = "http://www.posterservice.com/interface_parts/shim.gif";
			button.alt = "Expand";
		}
		else
		{
			pndoAn(x)
			button.src = "http://www.posterservice.com/interface_parts/shim.gif";
			button.alt = "Close";
		}
	}
}

function pndoAn(){
	if (sDiv.offsetHeight < (sDiv.scrollHeight-1))
	{
		sDiv.style.height=(inEm + "em")
		inEm+=1.4;
		setTimeout("pndoAn()","1px")
	}
	else
	{
		sDiv.style.height="auto";
		sDiv.style.overflow="visible"
		inEm = 1;
	}
}

function test()
{
	alert("test");
}