// JavaScript Document

//this is the SWITCH type of conditional script


function displayMore() // thumbnail will hold 1-2-3-4 depending on which thumbnail was clicked
{ if (document.all) {
	IE_displayMore ();}
	else {N6_displayMore ();}
}


function IE_displayMore() {
	document.all.More.style.display="block";	
	document.all.showMorebtn.style.display="none";
	}
			
function N6_displayMore () {
	document.getElementById("More").style.display="block";
	document.getElementById("showMorebtn").style.display="none";
	}


function hideMore() // thumbnail will hold 1-2-3-4 depending on which thumbnail was clicked
{ if (document.all) {
	IE_hideMore ();}
	else {N6_hideMore ();}
}


function IE_hideMore() {
	document.all.More.style.display="none";
	document.all.showMorebtn.style.display="block";}
	
	
function N6_hideMore () {
	document.getElementById("More").style.display="none";
	document.getElementById("showMorebtn").style.display="block";}