function fl(src, width, height, fvar){

	var uid = src.split("/")[src.split("/").length - 1];
	AC_FL_RunContent(
		'width', width, 'height', height, 'src', src, 'quality', 'high',
		'align', 'middle', 'play', 'true', 'loop', 'true', 'scale', 'noScale', 'wmode', 'transparent',
		'devicefont', 'false', 'id', uid, 'bgcolor', '#ffffff', 'name', uid, 'menu', 'false',
		'allowFullScreen', 'false', 'allowScriptAccess','sameDomain', 'movie', src, 'salign', 'TL',
		'FlashVars', fvar
	); //end AC code
}
function rfl(src, width, height, fvar){

	var uid = src.split("/")[src.split("/").length - 1];
	
	var rtn = "";

	rtn += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"" + width + "\" height=\"" + height + "\" id=\"" + uid + "\" align=\"middle\">";
	rtn += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
	rtn += "<param name=\"allowFullScreen\" value=\"false\" />";
	rtn += "<param name=\"movie\" value=\"" + src + "\" />";
	rtn += "<param name=\"quality\" value=\"high\" />";
	rtn += "<param name=\"bgcolor\" value=\"#ffffff\" />";
	rtn += "<embed src=\"" + src + "\" quality=\"high\" bgcolor=\"#ffffff\" width=\"" + width + "\" height=\"" + height + "\" name=\"" + uid + "\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />";
	rtn += "</object>";

	return rtn;
}

function wo(src, width, height, wvar){
	window.open(src, '', 'width=' + width + ', height=' + height);
}

function bluring(){
	if(event.srcElement.tagName=="A" || event.srcElement.tagName=="IMG")
		document.documentElement.focus();
}
document.onfocusin = bluring;