var FLASH_VER = 8;
var FLAversion = deconcept.SWFObjectUtil.getPlayerVersion()['major'];
var hasFlash = (FLAversion>=FLASH_VER) ? true : false;
if(document.location.search.substring(1) == 'detectflash=false') hasFlash = true;
$('error_flash').style.display = (hasFlash) ? 'none' : 'block';
$('ok_flash').style.display = (hasFlash) ? 'block' : 'none';
	
function $(obj) {
	return document.getElementById(obj);
}