<!--

function go() {
	if(arguments[0]) {
		if(arguments[1] && arguments[1] == true)
			window.open(arguments[0], '_blank');
		else
			location.href = arguments[0];
	}
	return false;
}

-->