// ==UserScript==
// @name albert.nl - Bypass sniffer
// @author scipio 
// @namespace http://home.wanadoo.nl/sipke.reina/opera/index.html 
// @version 1.0
// @description  Bypasses the sniffer on albert.com and allows access
//			to the site.
// @ujs:category site: fixes
// @ujs:published 2005-11-09 23:53
// @ujs:modified 2005-11-09 23:59
// @ujs:documentation http://userjs.org/scripts/site/fixes/albert-nl-bypass-sniffer 
// @ujs:download http://userjs.org/scripts/download/site/fixes/albert-nl-bypass-sniffer.js
// ==/UserScript==


/* 
 * This script is granted to the Public Domain.
 */

if (window.location.hostname == 'www.albert.nl' ){
	window.opera.defineMagicVariable(
		'browserAccepted',
		function(){return true;},
		null);
}
