// ==UserScript==
// @name            Trouw.nl fixer 01
// @namespace       http://people.opera.com/rijk/opera/scripts/
// @description     Avoiding browser sniffer on Trouw.nl
// @include         http://www.trouw.nl/*
// ==/UserScript==
/*
Script source:
  Scipio
  http://my.opera.com/scipio/journal/4

  This adaption made by Rijk van Geijtenbeek, 2005-03-25.
*/

(function(){
  var str=document.body.getAttribute('onload');
  if(str.indexOf('ververs')>=0) {
    str=str.replace("ververs('","").replace("')","");
    location.replace(str);
  }
})();
