// ==UserScript==
// @name           Window Focus
// @namespace      http://alexleykin.zapto.org
// @description    Grab Focus from Flash back to the window
// ==/UserScript==
// ==UserScript==
(function(){


   setInterval(doFocus, 1000);
   		

   function doFocus() 
   {
         if (document.activeElement.tagName == 'EMBED') {
            document.activeElement.blur();
         }
         return;
   }
})();





