
		<!--

			var isNav, isIE ;
			if( parseInt( navigator.appVersion ) >= 4 )
			{
				if ( navigator.appName == "Netscape" )
				{
					isNav = true ;
				}
				else
				{
					isIE = true ;
				}
			}


			function getWinSize( which )
			{
				if ( which == "width" )
					return ( isIE ) ? document.body.clientWidth : window.innerWidth ;
				if ( which == "height" )
					return ( isIE ) ? document.body.clientHeight : window.innerHeight ;
			}


			function getPageOffset( which )
			{
				if ( which == "left" )
					return ( document.all ) ? document.body.scrollLeft : self.pageXOffset ;
				if ( which == "top" )
					return ( document.all ) ? document.body.scrollTop : self.pageYOffset ;
			}


			function doPageScroll( st_X,max_X,st_Y,max_Y )
			{
				var diffX,diffY,stepX,stepY,moveX,moveY ;

				diffX = .1 * ( max_X - st_X ) ;
				if( diffX > 0 )
					stepX = Math.ceil( diffX ) ;
				else
					stepX = Math.floor( diffX ) ;

				diffY = .1 * ( max_Y - st_Y ) ;
				if( diffY > 0 )
					stepY = Math.ceil( diffY ) ;
				else
					stepY = Math.floor( diffY ) ;

				moveX = st_X + stepX ;
				moveY = st_Y + stepY ;

				window.status = "X : " +moveX+ "px / Y : " +moveY+ "px" ;

				if ( stepX > 0 && moveX <= max_X || stepY > 0 && moveY <= max_Y ||
					 stepX < 0 && moveX >= max_X || stepY < 0 && moveY >= max_Y )
				{
					scroll( moveX,moveY )

					st_X += stepX ;
					st_Y += stepY ;

					setTimeout( "doPageScroll( " +st_X+ "," +max_X+ "," +st_Y+ "," +max_Y+ " )",1 ) ;
				}
				else return true ;
			}

			function pageScrollTo( max_X,max_Y )
			{
				var st_X = getPageOffset( "left" ) ;
				var st_Y = getPageOffset( "top" ) ;

				doPageScroll( st_X,max_X,st_Y,max_Y ) ;
			}

		// -->

