function FlashPlayerVer(){

var flashplayer_ver = 0;

if(navigator.plugins && navigator.mimeTypes['application/x-shockwave-flash']){
var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
if(plugin){flashplayer_ver = parseInt(plugin.description.match(/\d+\.\d+/));}
}
else{
try{
var flashOCX = new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version").match(/([0-9]+)/);
if(flashOCX){flashplayer_ver = parseInt(flashOCX[0]);}
}catch(e){}
}
if(flashplayer_ver <= 8){flashplayer_ver = 0;}

if (flashplayer_ver == 0){
noFlash();
}

else
{
onFlash();
}


function onFlash(){

document.write('<div id="topFlash">');
document.write('<a class="to_get_flash" href="http://get.adobe.com/jp/flashplayer/">Flash Player</a>');
document.write('<a class="to_D1" href="d1grandprix/index.html">D1 GRAND PRIX</a> ');
document.write('<a class="to_vitz" href="vitz/index.html">NETZ CUP VITZ RACE</a> ');
document.write('<a class="to_offroad" href="offroadrace/index.html">OFFROAD RACE</a> ');
document.write('<a class="to_drag" href="dragracing/index.html">DRAG RACING</a> ');
document.write('<a class="to_eco" href="eco-challenge/index.html">ECO CHALLENGE</a>');
document.write('</div>');
}


function noFlash(){

document.write('<div id="noFlash">');
document.write('<a class="to_get_flash" href="http://get.adobe.com/jp/flashplayer/">Flash Player</a>');
document.write('<a class="to_D1" href="d1grandprix/index.html">D1 GRAND PRIX</a> ');
document.write('<a class="to_vitz" href="vitz/index.html">NETZ CUP VITZ RACE</a> ');
document.write('<a class="to_offroad" href="offroadrace/index.html">OFFROAD RACE</a> ');
document.write('<a class="to_drag" href="dragracing/index.html">DRAG RACING</a> ');
document.write('<a class="to_eco" href="eco-challenge/index.html">ECO CHALLENGE</a>');
document.write('</div>');
}


} 
