function goto(link) {
	document.location.href=link;
}

function buttonDown(button) {
	button.style.backgroundImage='url(button_down.gif)';
	button.style.cursor='pointer';
}

function buttonUp(button) {
	button.style.backgroundImage='url(button.gif)';
}
