function funResizeBrowser()
{
	self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);
}


function funStartTimer()
{
	id=window.setTimeout ("funIsMoviePlaying();", 1000);
}

function funIsMoviePlaying()
{
	var movie = window.document.IntroFlash 
 
	if (movie.IsPlaying()) 
		{ 
		funStartTimer(); 
		} 
	else
		{
		window.location = "home.asp";
		}   
}



