function showMore(varA, varB){	varSwitch = ('showMoreSwitch-' + varA);	varContent = ('showMoreContent-' + varA);	if( document.getElementById ) {		if( varB != 0 ) {			document.getElementById(varContent).style.display = "block";			document.getElementById(varSwitch).style.display = "none";		} else {			document.getElementById(varContent).style.display = "none";			document.getElementById(varSwitch).style.display = "block";		}	} else {		location.href = varB;		return true;	}}/*var hoge_scripts = window.onload;window.onload = function() {	if(hoge_scripts != null) hoge_scripts();	starttarget();	setNWLink();	appendBanner();	fd.onLoad();}*/