function gotoUrl(url)
{
	window.location.href = url;
}

function setContentVisible(image)
{
	document.getElementById("page").style.background = "url(" + image + ") no-repeat";
	document.getElementById("content").style.visibility = "visible";
}

function displayPosition(event)
{
	//alert("X = " + event.pageX +",Y = " + event.pageY);
}