/**
 * @author Michelangelo Capraro
 */

// this redirects the pageif the user has the right flash player

function SEOPageInit() 
{
	if (swfobject.hasFlashPlayerVersion("9.0.124") && isBrowserValid()) {
		document.location = "index.html#" + deeplink;
	} else {
		document.getElementById("flashcontent").style.position = "relative";
		document.getElementById("flashcontent").style.overflow = "visible";
		document.getElementById("flashcontent").style.width = "auto";
		document.getElementById("flashcontent").style.height = "auto";
	}
}
