// ------------[+]-- DynamicHTML MiniMenu// ------------[+]-- Copyright (C) 2002- HP-DESIGN.NET. // ------------[+]-- Takeru [ http://hp-design.net/ ] // No reproduction , no republication without written permission of HP-DESIGN.NET // Must not delete this copyright in order to use this script function initMiniMenuPoint(id,rspan,bspan) {	this.id = getObjectById(id) ;	this.width = getObjectWidth(this.id) ;	this.height = getObjectHeight(this.id) ;	this.x = 0 ; this.y = 0 ;	this.right = rspan ;	this.bottom = bspan ;	this.posit = positMiniMenu ;	this.show = showMiniMenu ;	this.hide = hideMiniMenu ;	return this ;}function initMiniMenuMain(id,rspan,bspan) {	this.id = getObjectById(id) ;	this.width = getObjectWidth(this.id) ;	this.height = getObjectHeight(this.id) ;	this.x = 0 ; this.y = 0 ;	this.right = rspan ;	this.bottom = bspan ;	this.visibility = 0 ;	this.posit = positMiniMenu ;	this.show = showMiniMenu ;	this.hide = hideMiniMenu ;	return this ;}var oMiniMenu ; function MiniMenu() {	if( _bw.net6up || _bw.ie4up || _bw.opera6 ) {		oMiniMenu = new setMiniMenu() ; var pal = oMiniMenu ; 		pal.flag = 1 ; pal.point.show() ;		pal.point.posit() ; pal.main.posit() ;	}}function positMiniMenu() {	var that = this ;	var wWidth = getWindowWidth() ; var wHeight = getWindowHeight() ;	var yt = getScrollY() ; var xt = getScrollX() ;	that.x = wWidth - that.width - that.right + xt ;	that.y = wHeight - that.height - that.bottom + yt ;	setObjectTo( that.id , that.x , that.y ) ;	setTimeout( function() { that.posit() } , 10 ) ;}function showMiniMenu() { setObjectVisibility( this.id , 1 ) }function hideMiniMenu() { setObjectVisibility( this.id , 0 ) }function visibleMiniMenu() { var pal = oMiniMenu ;	if( pal.flag ) { var el = oMiniMenu.main ;		if( el.visibility ) { el.visibility = 0 ; el.hide() }		else { el.visibility = 1 ; el.show() }	}}