<script>
var is_flash_installed = false;
try {
if(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')) is_flash_installed=true;
}catch(e){
if(navigator.mimeTypes['application/x-shockwave-flash'] != undefined) is_flash_installed=true;
}
document.write( is_flash_installed );
</script>
<script>
function is_flash_installed() {
try { if(new ActiveXObject('ShockwaveFlash.ShockwaveFlash')) return true; }
catch(e){ if(navigator.mimeTypes['application/x-shockwave-flash'] != undefined) return true; }
return false;
}
document.write( is_flash_installed() );
</script>