function VerificaResolucao() {
var resolution = screen.width;
var leftVideo
var topVideo
var CapaBack
var fundoGeralBack

if (resolution == 1024){
	leftVideo = 209;
	topVideo = 239;
	fundoGeralBack = '../_img/fundo_geral_1024.jpg';
}

if (resolution == 1152){
	leftVideo = 209;
	topVideo = 239;
	fundoGeralBack = '../_img/fundo_geral_1152.jpg';
}

if (resolution == 1280){
	leftVideo = 337;
	topVideo = 267;
	fundoGeralBack = '../_img/fundo_geral_1280.jpg';
}

document.all.DivVideo.style.left=leftVideo;
document.all.DivVideo.style.top=topVideo;
document.all.TabelaPrincipal.background=fundoGeralBack;
}

