// JavaScript Document

//*******************************************
//Función para plantar cookie para obtener resolución de la pantalla
//*******************************************

function writeCookie() 
{
 var today = new Date();
 var the_date = new Date("December 31, 2023");
 var the_cookie_date = the_date.toGMTString();
 var path= "; path=/"
 var the_cookie = "width="+ screen.width + "; expires=" + the_cookie_date + path;
 var the_cookie2 = "height="+ screen.height + "; expires=" + the_cookie_date + path;
 document.cookie=the_cookie
 document.cookie=the_cookie2
}

