
<!--
// 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) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
		AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','400','height','325','src',				'flash/home-roof','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','flash/home-roof' );
} else {  // flash is too old or we can't detect the plugin
/*
	var alternateContent = 'Alternate HTML content should be placed here.<BR>'
	+ 'This content requires the Adobe Flash Player. '
	+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
*/
	var alternateContent = '<table width="100%" border="0" cellspacing="0" cellpadding="0">'
		+ '<tr>'
		+ '<td width="20%">&nbsp;</td>'
		+ '<td class="citation"> This content requires the <strong>Adobe Flash Player</strong> and a browser with <strong>JavaScript</strong> enabled. <a href="http://www.adobe.com/go/getflash/">Get Flash</a></td>'
		+ '</tr>'
        + '</table>'
		+ '<img src="images/alt-flash.jpg" width="396" height="326" />';
	document.write(alternateContent);  // insert non-flash content
}
// -->