var hasReqestedVersion = DetectFlashVer(8, 0, 0); // Version check based upon the values entered
function insertFlashContent(a,b,c,d){
	if(hasReqestedVersion){
		AC_FL_RunContent(
			'src',a,
			'width',b,
			'height',c,
			'quality','high',
			'wmode','transparent',
			'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(d);
	}
}
