function toggle2(showHideDiv, switchTextDiv) {
	var ele = document.getElementById(showHideDiv);
	var text = document.getElementById(switchTextDiv);
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "<img src='http://www.bertotools.com/Images/down.gif' border='0' height='15' width='10'>";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "<img src='http://www.bertotools.com/Images/up.gif' border='0' height='15' width='10'>";
	}
}
