function createFlashPlayer(player, w, h){

// Check to see if the version meets the requirements for playback -- 
	//hasReqestedVersion = false;
	if (hasReqestedVersion) {
		// if we've detected an acceptable version
		// embed the Flash Content SWF when all tests are passed
		
		AC_FL_RunContent(
				"src", player,
				"width", w,
				"height", h,
				"align", "left",
				"id", "flash",
				"quality", "high",
				"bgcolor", "ffffff",
				"name", "slideshow",
				"allowScriptAccess","sameDomain",
				"type", "application/x-shockwave-flash",
				'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
				"pluginspage", "http://www.adobe.com/go/getflashplayer",
				"base", ".",
				"wmode", "transparent"
	);

	
	
	} else {   
		var alternateContent = '<img src="images/flash/homeDefault.jpg" width="700" height="250" alt=""/>'
		//+ 'This content requires the Adobe Flash Player. '
		//+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
		document.write(alternateContent);  // insert non-flash content
	}
	
}