<!--

//COLLAPSING TEXT FUNCTIONS
if (document.getElementById)
{
 document.writeln('<style type="text/css"><!--');
 document.writeln('.texter {display:none}');
 document.writeln('//--></style>');
 }

function openClose(theID)
{
	var doc = document.getElementById(theID).style;
 	if (doc.display == "block")
 	{
		doc.display = "none"
	}
 	else
	{
		doc.display = "block"
	}
 }

//END COLLAPSING TEXT FUNCTIONS


