function whyToggle() {
	var whybox = document.getElementById("whybox");
	if (whybox.style.display == '' || whybox.style.display == 'none') {
		whybox.style.display = "block";
	} else {
		whybox.style.display = "none";
	}
	return false;
}