// JavaScript Document
function showHide(toShow, toHide){
	show = document.getElementById(toShow);
	hide = document.getElementById(toHide);
	
	hide.style.visibility='hidden';
	show.style.visibility='visible';
}
