window.onload=function(){
	FixLinks();	
}
function FixLinks() {
	var alist = document.getElementsByTagName("a");
	var LinkCount = alist.length;
	var i = 0;
	var link = "";
	while(i < LinkCount) {
		link = alist[i].toString();
		if(link.indexOf("/cgi-bin/sws/go.pl") != -1) {
			if (link.indexOf("go.pl?location=") != -1) {
				alist[i].href = link.substring(link.indexOf("go.pl?location=") + 15);
			} else 
				if (link.indexOf("/cgi-bin/sws/go.pl?distr=1") != -1) {
					alist[i].href = "http://www.wnsoft.com/apr/picturestoexe-setup.exe";
				}
				if (link.indexOf("/cgi-bin/sws/go.pl?distr=4") != -1) {
					alist[i].href = "http://www.wnsoft.com/apr/picturestoexe-setup.zip";
				}
				if (link.indexOf("/cgi-bin/sws/go.pl?sale=2") != -1) {
					alist[i].href = "https://www.regnow.com/softsell/nph-softsell.cgi?item=1639-3&ss_short_order=true&ordertype=Deluxe";
				}
				if (link.indexOf("/cgi-bin/sws/go.pl?sale=3") != -1) {
					alist[i].href = "https://www.regnow.com/softsell/nph-softsell.cgi?item=1639-3&ss_short_order=true&ordertype=Standard";
				}
				if (link.indexOf("/cgi-bin/sws/go.pl?sale=4") != -1) {
					alist[i].href = "https://www.regnow.com/softsell/nph-softsell.cgi?item=1639-3&ss_short_order=true&ordertype=Upgrade%20to%20Deluxe";
				}
		}
		i++;
	}
}