<!--
var FlashMode = 0;
 

<!-- Detect  Flash 6 -->
if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {
if (navigator.plugins && navigator.plugins["Shockwave Flash"] && (versionIndex = navigator.plugins["Shockwave Flash"].description.indexOf(".")) != - 1) {
var versionString = navigator.plugins["Shockwave Flash"].description.substring(versionIndex-1, versionIndex);
versionIndex = parseInt( versionString );
if ( versionIndex >= 6 ) {
FlashMode = 1;
}
}
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && navigator.userAgent.indexOf("Win")>=0) {
document.write('<SCRIPT LANGUAGE=VBScript\> \n');
document.write('on error resume next \n');
document.write('FlashMode = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6"))) \n');
document.write('</SCRIPT\> \n');
} else if (navigator.userAgent.indexOf("Win")==-1 && navigator.userAgent.indexOf("Mac")==-1) {
FlashMode = 1;
}


if ( FlashMode ) {

} else {

window.location = "http://www.plana.com/index.html";
}

//-->
