// Code by Ryan Oglesby
// ryan-oglesby@utulsa.edu
// Use by permission only.

// Used in the decade index pages

// Expands the hidden text
function expand(text)
{
	var code = "<span class='browse_info_1'>Did You Know? <a href='javascript:collapse();' class='lb'>[&lt;&lt;]</a><p></span><span class='browse_info_2'>" + text + "</span>";
	document.getElementById("info").innerHTML = code;
}
// Hides the text again
function collapse()
{
	var code = "<span class='browse_info_1'>Did You Know? <a href='javascript:expand( getText() );' class='lb'>[&gt;&gt;]</a> ...</span>";
	document.getElementById("info").innerHTML = code;
}