// Simple link redirector. Copyright 2003, Matthew Blain
function onbodyclick()
{
	if (window.event.srcElement.tagName == "A")
	{
		var href = window.event.srcElement.href;
		var hrefl = href.toLowerCase();
		if (hrefl.indexOf("http:") == 0
			&& hrefl.indexOf("http://mblain.com/") != 0
			&& hrefl.indexOf("http://www.mblain.com/") != 0)
		{
			window.event.srcElement.href = ""
				+ "http://www.mblain.com/cgi-bin/redirect.cgi?src="
				+ document.location.href.split("#")[0]
				+ "&url="
				+ href;
		}
	}
}


document.body.onclick = onbodyclick;

