	function splash( )
	{
		var oTarget	= document.getElementById( 'barrier' ) ;
		var nSteps 	= 69 ;
		var nWidth	= 69 ;
		oTarget.style.width = ( Number( oTarget.style.width.replace( 'px', '' ) ) + nWidth/nSteps ) + 'px' ;
		
		
		if( Number( oTarget.style.width.replace( 'px', '' ) ) <   nWidth  )
			setTimeout( "splash() ", 100 ) ;
		else
			location.href= '/teststart' ;
	} 
