﻿// toggleDIV: Toggle the visibility of a DIV when a 'More >' or '< Less' link is clicked
// Arguments:
//		span:	An object representing the <span>
//		DIV:	An object representing the <div>
//
function toggleDIV(thisSpan, thisDiv) {
	if(thisDiv.style.display == "none") {
		thisDiv.style.display = "block";
		thisSpan.innerHTML = "< Less";
	} else {
		thisDiv.style.display = "none";
		thisSpan.innerHTML = "More >";
	}
}