// -----------------------------------------------------------------------------// Globals// Major version of Flash requiredvar requiredMajorVersion = 7;// Minor version of Flash requiredvar requiredMinorVersion = 0;// Minor version of Flash requiredvar requiredRevision = 0;// -----------------------------------------------------------------------------// 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//var alternateContent = '<img src=images/noflash.jpg height=271 border=0 alt=>';if (hasReqestedVersion) {	// if we've detected an acceptable version	// embed the Flash Content SWF when all tests are passed	AC_FL_RunContent(				"src", "flash/photo_top",				"width", "1005",				"height", "250",				"align", "middle",				"id", "top",				"quality", "high",				'wmode', 'opaque',				"scale", "noscale",				"salign", "lt",				"bgcolor", "#000000",				"name", "top",				"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{				document.write("<div id=\"photo_flash\">");				document.write("<div style=\"width:1005px;height:250px;background:url(images/flash_photo.jpg) no-repeat;\">");				document.write("<table width=\"243\"border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");				document.write("<tr>");				document.write("	<td><a href=\"lineup/b003/index.html\" target=\"_blank\"><img src=\"flash/inc/flash_btn_02.jpg\" width=\"223\" heigth=\"67\" alt=\"\" border=\"0\" name=\"03\" id=\"03\" alt=\"Model B003\" style=\"margin:10px 10px 0 15px;\"></a></td>");				document.write("</tr>");				document.write("<tr>");				document.write("	<td><a href=\"special/macrocon2010/index.html\" target=\"_blank\"><img src=\"flash/inc/flash_btn_04.jpg\" width=\"223\" heigth=\"67\" alt=\"\" border=\"0\" name=\"02\" alt=\"\" id=\"02\" style=\"margin:15px 10px 0 15px;\"></a></td>");				document.write("</tr>");				document.write("<tr>");				document.write("	<td><a href=\"special/tripod2010/index.html\" target=\"_blank\"><img src=\"flash/inc/flash_btn_06.jpg\" width=\"223\" heigth=\"67\" alt=\"\" border=\"0\" name=\"01\" id=\"01\" alt=\"\"style=\"margin:15px 10px 0 15px;\"></a></td>");				document.write("</tr>");				document.write("</table>");				document.write("</div>");				document.write("</div>");	}