//タブメニュー

	function tabmenu(id) {
		if (document.getElementById) return document.getElementById(id);
		if (document.all) return document.all(id);
		return null;
	}
	function topTab(n) {
		for ( var i=1; i<3; i++ ) {
			if ( tabmenu( 'topRightZoneT' + i ) ) {
				tabmenu( 'topRightZoneT' + i ).style.display = "none";
				}
			}
		tabmenu( 'topRightZoneT' + n ).style.display = "block";
	}
	function bottomTab(n) {
		for ( var i=1; i<4; i++ ) {
			if ( tabmenu( 'topRightZoneB' + i ) ) {
				tabmenu( 'topRightZoneB' + i ).style.display = "none";
				}
			}
		tabmenu( 'topRightZoneB' + n ).style.display = "block";
	}
	function contentsChange(n) {
		for ( var i=1; i<3; i++ ) {
			if ( tabmenu( 'tabDialog' + i ) ) {
				tabmenu( 'tabDialog' + i ).style.display = "none";
				}
			}
		tabmenu( 'tabDialog' + n ).style.display = "block";
	}

