/*
 * Copyright (C) 2009 Urban Brands.
 *
 * @Author Juan Crespo
 * @Version 1.0
 * @Date 6/18/09
 */
 
var hasProductInstall = DetectFlashVer(6, 0, 65);
var hasRequestedVersion = DetectFlashVer(9, 0, 28);
if (hasProductInstall && !hasRequestedVersion) {
	var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
	var MMredirectURL = window.location;
	document.title = document.title.slice(0, 47) + " - Flash Player Installation";
  var MMdoctitle = document.title;
	AC_FL_RunContent(
		"src", "playerProductInstall",
		"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
		"width", "800",
		"height", "720",
		"align", "middle",
		"id", "homePage",
		"quality", "high",
		"bgcolor", "#869ca7",
		"name", "template",
		"allowScriptAccess","sameDomain",
		"type", "application/x-shockwave-flash",
		"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else if (hasRequestedVersion) {
	AC_FL_RunContent(
		"src", "/images/template",
		"width", "800",
		"height", "720",
		"align", "middle",
		"id", "homePage",
		"quality", "high",
		"bgcolor", "#869ca7",
		"name", "template",
		"allowScriptAccess","sameDomain",
		"type", "application/x-shockwave-flash",
		"wmode", "transparent",
		"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);	
} else {
    var alternateContent = '<div class="needFlash">This content requires the Adobe Flash Player. '
  		+ 'To download the Adobe Flash Player. '
   		+ '<a style="font-weight:bold;" href=http://www.adobe.com/go/getflash/ target=_new>Click Here</a> then come back and refresh your browser.</div>';
    document.write(alternateContent);  // insert non-flash content	
}