// JavaScript Document

function $f(elemento)
{
	return document.getElementById(elemento);
}
window.onload = function()
{
	var banner	= $f("banner_lateral");
	if(screen.width < 1024)
	{
		banner.style.left	= "790px";
	}
	if(screen.width >= 1280)
	{
		banner.style.left	= "790px";
	}
	if(screen.width == 1360)
	{
		banner.style.left	= "790px";
	}
	if(screen.width == 1440)
	{
		banner.style.left	= "790px";
	}
	if(screen.width == 1600)
	{
		banner.style.left	= "790px";
	}
	if(screen.width >= 1920)
	{
		banner.style.left	= "790px";
	}
}

function gotoPage(strTargetPage)
{
	window.location.href = strTargetPage;
}
