// JavaScript Document
function flashdetect()
{
	
	/*Flash detection*/
	var hasReqestedVersion = DetectFlashVer(8, 0, 0);
	// Check to see if the version meets the requirements for playback
	if(hasReqestedVersion) 
	{

		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		document.getElementById("flashsection").style.display='';
		document.getElementById("imagesection").style.display='none';
	} 
	else 
	{  
     	// flash is too old or we can't detect the plugin
		document.getElementById("flashsection").style.display='none';
		document.getElementById("imagesection").style.display='';
	}
	/*End of script*/
}