/*
Flash Plugin Detection
Copyright (c) 2006 Ylab, Ontwerpbureau voor interactieve media, www.ylab.nl
Author: Yohan Creemers
Requires: ufo.js
version 1.1

Sample use:
<a href="#" onclick="flashOn(6,0,'doflash.php');return false;">animaties aan</a>
*/
function flashOn(minVersion, build, urlNext){
	UFO.getFlashVersion();
  if (UFO.hasFlashVersion(minVersion, build)) {
    location.replace(urlNext);
  }
  else{
    if(confirm('Om de animaties te kunnen zien is Adobe Flash Player nodig.\nKlik op OK om deze plugin op te halen.')){
      location.href="http://www.adobe.com/go/getflash/";
    }
  }
}
