<!--
writeCookie();

function writeCookie()
{
	
var today = new Date();
var the_date = new Date("December 31, 2023");
var the_cookie_date = the_date.toGMTString();
var the_cookie = "brito_resolution="+ screen.width +"x"+ screen.height;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie

var today2 = new Date();
var the_date2 = new Date("December 31, 2023");
var the_cookie_date2 = the_date2.toGMTString();
var the_cookie2 = "brito_resolution_width="+ screen.width;
var the_cookie2 = the_cookie2 + ";expires=" + the_cookie_date2;
document.cookie=the_cookie2

var today3 = new Date();
var the_date3 = new Date("December 31, 2023");
var the_cookie_date3 = the_date3.toGMTString();
var the_cookie3 = "brito_resolution_height="+ screen.height;
var the_cookie3 = the_cookie3 + ";expires=" + the_cookie_date3;
document.cookie=the_cookie3

//alert(location);

location = window.self.location;
}
//-->// JavaScript Document