function gotoURL(url) {
	var external = url.indexOf("http");
	if (external == 0) {
		window.open(url);
	} else {
		location.href = url;
	}
	
}

function showCursor(object) {
	object.style.cursor = 'pointer';
	object.style.cursor = 'hand';
}
