// shows the cursor as if the current zone is a Link
function showHandCursor(caller) {
	caller.style.cursor = "pointer";
}

// shows the default cursor
function showDefaultCursor(caller) {
	caller.style.cursor = "auto";
}

// open a link in the current window
function openPage(url) {
	window.open(url, '_self');
}
