<!-- Copyright (c) 2004 PHD Computer Consultants Ltd -->

function go(to)
{
	if( document.getElementById)		// N6+, IE5+, M1
		location.href = document.getElementById(to)
	else if( document.all)				// IE4
		location.href = document.all[to]
}

