function detectflash()
{

//********Set the names of your web pages here:*****

	flashpage 		= "html/flashhome.htm"
	//nonflashpage	= "nonflash.html"
	cantdetectpage	= "html/flashdetect.htm"



//**************************************************

	
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		window.location=flashpage;
	}
	else if(navigator.plugins)
	{
		if(navigator.plugins["Shockwave Flash"])
		{
			window.location=flashpage;
		}
		else
		{
			window.location=cantdetectpage;
		}
	}
	else
	{
	window.location=cantdetectpage;
	}
}


