// JavaScript Document
function showFact(mydiv,myexpander) {
	if (document.getElementById(mydiv).className == "factbody_hide") {
			document.getElementById(mydiv).className = "factbody_show";
			document.images[myexpander].src = "images/minus.png";
	} else {
			document.getElementById(mydiv).className = "factbody_hide";
			document.images[myexpander].src = "images/plus.png";
	}
}
if (document.images)
{
  pic1 = new Image(18,18); 
  pic1.src = "images/plus.png"; 
}