function showhide(theid, allids) {
	
	for (var i in allids) {
		
		if(document.getElementById(allids[i])) {
			document.getElementById(allids[i]).style.display = "none";
		}
		
	}
	
	var el = document.getElementById(theid);
	
	el.style.display = "block";

}
