/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 <;
 <;	Additional History display module
 <;
 <;	About: I threw together this script so that people can look further into the history
 <;        of updates to our website!
 <;
 <;	Auth: Russ Stratfull
 <;	WebSite: http://databasik.com
 <;
 <;>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 */

function oldnews() {
	mr = document.getElementById("sresults");
	if (mr.style.display == 'none') {
	   mr.style.display = "block";
	   mr.style.height = '500px';
	   mr.innerHTML = '<p>Getting history, please wait...</p>';
	   pst = document.getElementById("expandpast");
	   pst.innerHTML = 'Less <<<';
	   makeGetRequest("", "old.php", "", "oldernews");
   }
   else {
	   mr.style.display = 'none';
	   mr.innerHTML = '';
	   pst = document.getElementById("expandpast");
	   pst.innerHTML = 'More >>>';
   }
}
