// JavaScript Document
function toggle(id, text) {
	var target = document.getElementById(id);
	target.innerHTML = text;
}