// -----------------------------------------------------------------------------
// 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", "270",
				"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:270px;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/b011/index.html\" target=\"_blank\"><img src=\"flash/inc/flash_btn_01.jpg\" width=\"223\" heigth=\"67\" alt=\"\" border=\"0\" name=\"01\" id=\"01\" alt=\"Model_B011\"style=\"margin:15px 10px 0 15px;\"></a></td>");
				document.write("</tr>");

				document.write("<tr>");
				document.write("	<td><a href=\"lineup/b008/index.html\" target=\"_blank\"><img src=\"flash/inc/flash_btn_03.jpg\" width=\"223\" heigth=\"67\" alt=\"\" border=\"0\" name=\"01\" id=\"01\" alt=\"Model_B008\"style=\"margin:15px 10px 0 15px;\"></a></td>");
				document.write("</tr>");

				document.write("<tr>");
				document.write("	<td><a href=\"lineup/a005/index.html\" target=\"_blank\"><img src=\"flash/inc/flash_btn_05.jpg\" width=\"223\" heigth=\"67\" alt=\"\" border=\"0\" name=\"03\" id=\"03\" alt=\"Model_a005\" style=\"margin:15px 10px 0 15px;\"></a></td>");
				document.write("</tr>");

				document.write("</table>");
				document.write("</div>");
				document.write("</div>");

	}

