var but;

function ExpandCollapse(sDivIndex,sDivC)
{
	if (document.getElementById("tablayer-result-" + sDivIndex).style.display == "block")
	{
		if(sDivC==true){ document.getElementById("tablayer-result-control-" + sDivIndex).style.display = "none"; }	
		document.getElementById("tablayer-result-" + sDivIndex).style.display = "none";
		if(sDivIndex<100){ document.cookie='p' + sDivIndex + '=' + escape(''); }
	}
	else
	{
		if(sDivC==true){ document.getElementById("tablayer-result-control-" + sDivIndex).style.display = "block"; }
		document.getElementById("tablayer-result-" + sDivIndex).style.display = "block";
		if(sDivIndex<100){ document.cookie='p' + sDivIndex + '=' + escape(sDivC); }
	}
}

function Expand()
{

}
