There are 2 previous versions of this script.
// ==UserScript==
// @name ABC Webpix and A-Net Direct Links
// @namespace http://userscripts.org/users/23652
// @description Rewrites links to the direct images
// @include http://www.abcwebpix.com/*
// @include http://www.abcanet.com/*
// @copyright JoeSimmons
// ==/UserScript==
var i, p, path, photos = document.evaluate("//a[starts-with(@href, 'javascript:openPreview(\"')]",document,null,6,null);
for(i=0; i<photos.snapshotLength; i++) {
p=photos.snapshotItem(i);
path = p.href.split("\",\"")[1].split("\",\"")[0];
p.href = (location.href.indexOf("'http://www.abcwebpix.com/")==0) ? 'http://www.abcwebpix.com/web/display/display_item.aspx?item='+path : 'http://www.abcanet.com/assets/'+path;
p.target = "_top";
}