In my HTML page, I need to check if Adobe Flash player is installed. If not, I want to automatically jump to another HTML page to tell the user that Flash player is required.
I'm using JavaScript to check if the Flash player is available, using the 'JavaScript Flash detection library'.
The body of my HTML page looks like this:
<body>
<script type="text/javascript">
if(!FlashDetect.installed)
{
alert("Flash 9.0.115 is required to enjoy this site.");
}
</script>
...
...
The detection is working: I can see the alert, but I didn't find a way to jump to another HTML page.
Any hint?
Edit: There is something I didn't mention which seems to make a difference: the HTML pages are local pages (running from a CD-ROM), and I'd like to jump to an HTML page which is located in the current directory.