/*
	Thanks to yuu,kotaro,MAGI and Satomitan
	Copyright 2000-2002 Jun
	Though you suffer damage using this script, the responsibility rests with you.
*/ 
function showhide(obj) {
	var ua = navigator.userAgent;

	if (ua.indexOf("Gecko") != -1) return false;
	var nodeNum = (document.all && ua.indexOf("Win") != -1) ? 2 : 3 ;
	var target = obj.childNodes[nodeNum];

	target.style.display = (target.style.display == "block") ? "none" : "block";
}

