// ==UserScript==
// @name          WOT
// @description   WOT
// @exclude       http://*.mywot.com/*
// @exclude       http://*.opera.com/*
// @exclude       http://*google.com/*
// @exclude       http://*supernature-forum.de/*
// @exclude       http://127.0.0.1/*
// @exclude       http://localhost/*
// ==/UserScript==

(function() {	
    var f = document.getElementById('wot-bookmarklet');
    if (f) {
        f.parentNode.removeChild(f);
        return;
    }
    var l = location.hostname;
    if (l && l.length) {
        f = document.createElement('iframe');
        if (f) {
            f.setAttribute('id', 'wot-bookmarklet');
            f.setAttribute('src', 'http://www.mywot.com/bookmarklet/' + encodeURIComponent(location.hostname));
            f.setAttribute('frameborder', 0);
            f.setAttribute('scrolling', 'no');
			f.setAttribute('style', 'position:fixed;top:10px;left:10px;' + 'width:135px;height:235px;border:0;margin:0;padding:0;z-index:10487575;');
            
			var div = document.createElement('div');
			div.setAttribute('id', 'wot-opera');
			div.setAttribute('style', 'position:fixed;top:10px;left:10px;' + 'width:135px;height:235px;border:0;margin:0;padding:0;z-index:10487576;opacity:0;');
			div.onclick = function(){
				var f = document.getElementById('wot-bookmarklet');
				if(f) {
					f.parentNode.removeChild(f);
				}
				var div = document.getElementById('wot-opera');
				if(div){
					div.parentNode.removeChild(div);
				}
			};
			
			if (document.body) {
                document.body.appendChild(f);
                document.body.appendChild(div);
            }
        }
    }
})();