﻿// 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(
				"src", "Images/ani_pics",
				"width", "493",
				"height", "394",
				"align", "middle",
				"id", "tcAnimationPictures",
				"quality", "high",
				"bgcolor", "#FFFFFF",
				"name", "tcAnimationPictures",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0',
				"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
	
} else {  // flash is too old or we can't detect the plugin
	var alternateContent =  '<img src="images/home_r4_c2.gif" width="493" height="394" id="home_r4_c2" alt="Grand Bay Condos - Longboat Key, FL - BOVIS LENDLEASE" />';
	document.write(alternateContent);  // insert non-flash content
}

