function swapInfo( targetID ) {
	if (document.getElementById) {
		target = document.getElementById( current );
		target.style.display = "none";
		
		target = document.getElementById( targetID );
		target.style.display = "";
		current = targetID;
	}
}

