/* Show Hide and Change */function show(id) {	hideshow = document.getElementById(id);	if(hideshow.style.display == 'none') {		hideshow.style.display = '';	}}function hide(id) {	hideshow = document.getElementById(id);	if (hideshow.style.display == '') {		hideshow.style.display = 'none';	} else {		setTimeout("hideshow.style.display = 'none';", 1000); //Set delay	}}function on(id) {	change = document.getElementById(id);	if (change.className == 'text_box_off') {		change.className = 'text_box_current';	}}function off(id) {	change = document.getElementById(id);	if (change.className == 'text_box_current') {		change.className = 'text_box_off';	}}
