// JavaScript Document
Resolucao_int = 1;

function res() {
	resolucao = screen.width;
	if (parseInt(resolucao) == 1152)
	{
		resolucao = 1024;
	}
	else if (parseInt(resolucao) > 1280)
	{
		resolucao = 1280;
	}
	else if (resolucao < 800)
	{
		resolucao = 800;
	}
    window.location = resolucao + "/index.asp";
}

function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}

