function getObject(id) {
	return document.getElementById(id);
}

function gotoUrl(monUrl) {
	document.location = monUrl;
}

function getWindowWidth()
{
	return window.innerWidth ? window.innerWidth : document.body.offsetWidth;
}
function getWindowHeight()
{
	return window.innerHeight ? window.innerHeight : document.body.offsetHeight;
}