// This code is for Nihon. Thanks to an anonymous coder for helping create it. (He didn't want credit) - borrowed from Aki with permission
var sand5 = document.all && document.getElementById;
var sand6 = document.getElementById && !document.all;
 
function show(whichid) {
	if (sand5||sand6) { var showid = document.getElementById(whichid); }
	if (showid.style.display == 'none') {
		showid.style.display = '';
	} else {
		showid.style.display='none';
	}
}
// JavaScript Document