// ==UserScript==
// @name Open links in new window
// @author Peter Eliopoulos 
// @namespace http://userjs.org/ 
// @version 1.0
// @description  Sets all links in a page to open in new window.
// @ujs:category general: enhancements
// @ujs:published 2005-10-28 22:33
// @ujs:modified 2005-10-28 22:42
// @ujs:documentation http://userjs.org/scripts/general/enhancements/open-in-new-window 
// @ujs:download http://userjs.org/scripts/download/general/enhancements/open-in-new-window.js 
// add sites to include here
// @include http://www.example.com/some-path/*
// @include http://my.yahoo.com/*
// @include http://populicio.us/*
// ==/UserScript==


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

document.addEventListener('load',function () {
  for( var i = 0; document.links[i]; i++ ) {
      document.links[i].target = '_blank';
  }
},false);