function do_totals1()
		{
		document.all.attpub.style.visibility="visible";
		window.setTimeout('do_totals2()',9000);
		}	
		function do_totals2()
		{
		lengthy_calculation();
		document.all.attpub.style.visibility="hidden";
		document.all.demjeu.style.visibility="visible";
		}
		
		function lengthy_calculation()
		{
		var x,y	
	        for(x=0;x<1000000;x++)
			{
			y += (x * y) / (y - x);			
			}
		}

