T<!-- Paste this code into an external JavaScript file named: textSections.js -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: James Kennedy :: http://foxweb.marist.edu/users/kbpc3/example.html */

function toggleMe(a){
var next=document.getElementById(a);
var b=new String();
b= a-1;
var prev=document.getElementById(b);
if(!next)return true;
if(next.style.display=="none"){
next.style.display="block"
prev.style.display="none"
window.scrollTo(0,0);
} else {
next.style.display="none"
}
return true;
}


