// JavaScript Document


// code to enable show/hide toggle.  Hides all divs named "divx" (where x is any number) then displays the div specified in the link.
var currentshown=1;
function showDiv(thediv){
	document.getElementById('div'+currentshown).style.display='none';
	document.getElementById('div'+thediv).style.display='block';
	currentshown=thediv;
}