function gotoLink(gotoElement, oldGotoHREF) {
	document.getElementById(gotoElement).href=oldGotoHREF;
}

window.onDomReady(parseGoTo);
function parseGoTo() {
	gotoLinks = document.getElementsByName('goto-link');
	for(gtI=0; gtI<gotoLinks.length; gtI++) {
		gotoLinks[gtI].onmousedown	= new Function('lastID=this.id; lastref=this.href; this.href="/goto/"+this.id.substr(5);');
		gotoLinks[gtI].onmouseup	= new Function('window.setTimeout("gotoLink(lastID, lastref)", 0)');
	}
}
