function SetContent()
{
	var contentHeight;
	var contentTop = document.getElementById("content").offsetTop - 20;
	 
	if (self.innerWidth)
	{
		contentHeight = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientWidth)
	{
		contentHeight = document.documentElement.clientHeight;
	}
	else if (document.body)
	{
		contentHeight = document.body.clientHeight;
	}
	
	document.getElementById("content").style.height = (contentHeight - contentTop);
}

function navover(id)
{
	document.getElementById(id).style.backgroundColor = "#1F2533";
}

function navout(id)
{
	document.getElementById(id).style.backgroundColor = "#525252";
}

function go(url)
{
	top.location.href = url;
}