/**
  * miniメニューバー
  */

/**
  * goto TOP
  */
terminal1_info = new Array() ;
terminal1_info[ 0 ] = "0001,TOP,#top,," ;
miniMenuGotoTop = new MenuBar( terminal1_info ) ;
miniMenuGotoTop.setShowPosition( DEF_MENUBAR_STYLE_RIGHT ) ;	/*	右寄せ		*/

/**
  * CLOSE
  */
terminal2_info = new Array() ;
terminal2_info[ 0 ] = "0001,閉じる,javascript:window.close(),," ;
miniMenuClose = new MenuBar( terminal2_info ) ;
miniMenuClose.setShowPosition( DEF_MENUBAR_STYLE_RIGHT ) ;		/*	右寄せ		*/

/**
  * goto TOP / CLOSE
  */
terminal3_info = new Array() ;
terminal3_info[ 0 ] = "0001,TOP,#top,," ;
terminal3_info[ 1 ] = "0001,閉じる,javascript:window.close(),," ;
miniMenuGotoTopAndClose = new MenuBar( terminal3_info ) ;
miniMenuGotoTopAndClose.setShowPosition( DEF_MENUBAR_STYLE_RIGHT ) ;	/*	右寄せ		*/




/*
 * goto TOP navi
 */
function putNaviGoToTop() {
	var		msg="" ;
	msg += "<table class='goto-top' cellspacing='0' cellpadding='0' border='0'>" ;
	msg += "<tr><td>|<a href='#top' title='このページのトップへ'>ページトップへ</a>|</td></tr>" ;
	msg += "</table>" ;
	document.write( msg ) ;
}

