// ==UserScript==
// @name            Polymatchmaker link re-writer
// @namespace       http://gdorn.nudio.net/greasemonkey
// @description     Rewrite PMM's god-awful new-window-opener
// @include         http://*.polymatchmaker.com/*
// @include					http://polymatchmaker.com/*
// ==/UserScript==
//javascript:NewWindow('http://www.polymatchmaker.com/pmm3/main.mv?Screen=VIEWPROFILE&View_Key=25868',25868,639,440)

(function() {

  var server = document.location.hostname;
  var anchors = document.getElementsByTagName("a");
  for(var i=0; i < anchors.length; i++)
  {
    var a = anchors[i];
    var href = a.href;
    var id = a.id;
    var title = a.title;
    if (href.indexOf("javascript:NewWindow") != -1) { // back to top
			var start = href.indexOf("Window('") + 8;
			var finish = href.indexOf("',");
			href = href.substring(start, finish);
			a.setAttribute("href", href);
			a.setAttribute("target", "_blank");
    }
  }
})();
