<!--
function oneDIV() {
		one.style.display = "block";
		two.style.display = "none";
		three.style.display = "none";
		four.style.display = "none";
	}
	function twoDIV() {
		one.style.display = "none";
		two.style.display = "block";
		three.style.display = "none";
		four.style.display = "none";
	}
	function threeDIV() {
		one.style.display = "none";
		two.style.display = "none";
		three.style.display = "block";
		four.style.display = "none";
	}
	function fourDIV() {
		one.style.display = "none";
		two.style.display = "none";
		three.style.display = "none";
		four.style.display = "block";
	}
//-->