function getURL(url){
	location.href = url;
}

/**
 *
 *	If user has FLASH 8, we show the Flash 8 version intro_f8.swf.
 * 	If the user has a lower version than 8, but at least 6 then we show intro_f6.swf
 * 	If the user doesn't have Flash, we show the image and redirect with JavaScript after 3000 milliseconds
 * 	If the user doesn't have JavaScript enabled, we simply show the hyperlinked image
 *
 */
if(DetectFlashVer(8, 0, 0)){
	
	var movieUrl = flashPath + "intro/swf/intro_f8.swf?nextPage=" + webRoot;
	
	var FO = { movie:movieUrl, width:"995", height:"600", majorversion:"8", build:"0", bgcolor:"#000000" };
	UFO.create(FO, "intro"); // write OBJECT / EMBED tags in the DIV with id intro
	
}
else if(DetectFlashVer(6, 0, 0)){
	
	var movieUrl = flashPath + "intro/swf/intro_f6.swf?nextPage=" + webRoot;
	
	var FO = { movie:movieUrl, width:"995", height:"600", majorversion:"6", build:"0", bgcolor:"#000000" };
	UFO.create(FO, "intro"); // write OBJECT / EMBED tags in the DIV with id intro
	
}
else {
	var nextPage = webRoot;
	setTimeout("getURL(" + nextPage + ")", 3000);
}
