
var swf = false;
function hasFlash(ver) {
  if(!ver) ver = 0;
	var n = navigator;
  if(n.plugins && n.plugins.length > 0) {
    var m,t,d,v;
    m = n.mimeTypes;
    t = 'application/x-shockwave-flash';
    if(m && m[t] && m[t].enabledPlugin && m[t].enabledPlugin.description) {
      d = m[t].enabledPlugin.description;
      //v = d.charAt(d.indexOf('.')-1);
	  v = parseInt(d.substr(d.indexOf('.')-2,2));
			swf = (v >= ver) ? true : false;
    }
  } else if(n.appVersion.indexOf("Mac") == -1 && window.execScript) {
    for(var i=ver; i<=20&&i!=1&&swf!=true; i++) {
      execScript('on error resume next: swf=IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash'+((i==0)?'':'.'+i)+'"))','VBScript');
    }
	} else {
	  swf = false;
	}
	return swf;
}

//##################################################################################

if( document.URL.indexOf('http://www.irreparable.de')==0 ){
	//document.location.href='http://perry.irreparable.de';
} else if( !hasFlash(6) ){
	document.location.href="noflash.html";
};

//###################################################################################

