// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
	// javascript attivo, flash presente
	AC_FL_RunContent(
				"src", "intro",
				"width", "700",
				"height", "450",
				"align", "middle",
				"id", "intro",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"name", "intro",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else {  // javascript attivo, flash non presente
	var alternateContent = '<div style="position:absolute;left:60px;top:20px;">'
	+'<div id="bhr1sx">'
	+'<p>Realizzazione di opere in acciaio<br />dall\'IDEA al PROGETTO<br />fino alla consegna<br />"CHIAVI IN MANO"</p>'
	+'</div>'
	+'<div id="bhr1dx"><img src="img/fotohome1.jpg" alt="" /></div>'
	+'<div id="bhr2dx"><img src="img/fotohome2.jpg" alt="" /></div>'
	+'<div id="bhr2sx"><img src="img/fotohome3.jpg" alt="" /></div>'
	+'<a href="http://www.adobe.com/go/getflash/" style="position: absolute; top: 430px; left: 50px; width: 550px;">Richiesto plug-in Flash Player (ver. 6 o successiva), clicca qui per installarlo.</a></div>';
	document.write(alternateContent);  // insert non-flash content
}