// WebcourseLinks
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.  To install it, you need
// Greasemonkey 0.2.6 or later: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "WebcourseLinks", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          WebcourseLinks
// @description   Fixes hyperlinks to open in the current window 
// @include       http://webcourse.cs.technion.ac.il/*
// ==/UserScript==

(function() 
{    
    /////////////////
    // other links //                          
    /////////////////
    ylinks = document.links;
    for(i = 0; i < ylinks.length; i++) 
    {
      if(ylinks[i].target.toLowerCase().match('wc_output'))
         ylinks[i].target = '';         
    }    
})();

