<SCRIPT LANGUAGE="javascript">
		<!--
		
function show1(pass) {
	var arr = new Array(8);
	arr[0] = "first";
	arr[1] = "second";
	arr[2] = "third";
	arr[3] = "fourth";
	arr[4] = "fifth";
	arr[5] = "sixth";	
	arr[6] = "seventh";
	arr[7] = "eigth";
	var x=0;
	for (x=0; x<8; x++) {
		if(pass == arr[x]) {
			showdiv(arr[x]);
		} else {
			hidediv(arr[x]);
		}
	}
}

function hidediv(pass) {
	var div = document.getElementById(pass);
	div.style.display = 'none';
}

function showdiv(pass) {
	var div = document.getElementById(pass);
	div.style.display = '';
}				
		//-->
</SCRIPT>