var test = document.getElementById("selecters");
test.style.visibility = 'visible';

function showDiv(Selected, Link) {
	if (document.getElementById) { 
		// DOM3 = IE5, NS6
		//This will turn on the div selected while turning off all the others that are not selected
		document.getElementById(Selected).style.visibility = 'visible';
		document.getElementById(Link).style.borderStyle = 'solid';
		document.getElementById(Link).style.borderWidth = '0px 0px 5px 0px';
		document.getElementById(Link).style.borderColor = '#7F8783';
		if(Selected != 'measure'){
			document.getElementById('measure').style.visibility = 'hidden';
			document.getElementById('measureButton').style.borderColor = '#AFBAB4';
		}
		if(Selected != 'gowns'){
			document.getElementById('gowns').style.visibility = 'hidden';
			document.getElementById('gownsButton').style.borderColor = '#AFBAB4';
		}
		if(Selected != 'relgarm'){
			document.getElementById('relgarm').style.visibility = 'hidden';
			document.getElementById('relgarmButton').style.borderColor = '#AFBAB4';
		}
		if(Selected != 'legalgarm'){
			document.getElementById('legalgarm').style.visibility = 'hidden';
			document.getElementById('legalgarmButton').style.borderColor = '#AFBAB4';
		}
	} else if (document.layers) { 
		// Netscape 4
		document.Selected.visibility = 'visible';
		document.Link.borderStyle = 'solid';
		document.Link.borderWidth = '0px 0px 5px 0px';
		document.Link.borderColor = '#7F8783';
		if(Selected != 'measure'){
			document.measure.visibility = 'hidden';
			document.measureButton.borderColor = '#AFBAB4';
		}
		if(Selected != 'gowns'){
			document.gowns.visibility = 'hidden';
			document.gownsButton.borderColor = '#AFBAB4';
		}
		if(Selected != 'relgarm'){
			document.relgarm.visibility = 'hidden';
			document.relgarmButton.borderColor = '#AFBAB4';
		}
		if(Selected != 'legalgarm'){
			document.legalgarm.visibility = 'hidden';
			document.legalgarmButton.borderColor = '#AFBAB4';
		}
	} else { // IE 4
		document.all.Selected.style.visibility = 'visible';
		document.all.Link.style.borderStyle = 'solid';
		document.all.Link.style.borderWidth = '0px 0px 5px 0px';
		document.all.Link.style.borderColor = '#7F8783';
		if(Selected != 'measure'){
			document.all.measure.style.visibility = 'hidden';
			document.all.measureButton.style.borderColor = '#AFBAB4';
		}
		if(Selected != 'gowns'){
			document.all.gowns.style.visibility = 'hidden';
			document.all.gownsButton.style.borderColor = '#AFBAB4';
		}
		if(Selected != 'relgarm'){
			document.all.relgarm.style.visibility = 'hidden';
			document.all.relgarmButton.style.borderColor = '#AFBAB4';
		}
		if(Selected != 'legalgarm'){
			document.all.legalgarm.style.visibility = 'hidden';
			document.all.legalgarmButton.style.borderColor = '#AFBAB4';
		}
	}
}