// JavaScript Document   	

function show_info(which)
{ 
	//first hide all answers
	for (var i = 0; i < 4; i++)
	{
		var my_info = eval("document.getElementById('campinfo_" + i + "').style") ;
		my_info.display = "none" ;
	}

	//then show the one that is appropriate
	document.getElementById(which).style.display = "" ;
}

function showhide(id){ 
if (document.getElementById){ 
obj = document.getElementById(id); 
if (obj.style.display == "none"){ 
obj.style.display = ""; 
} else { 
obj.style.display = "none"; 
} 
} 
} 


