setCookie(nombre,valor,dias) { dias ( ) { var fecha = new Date(); fecha.setTime(fecha.getTime()+(dias*24*60*60*1000)); var expires = "; expires="+fecha.toGMTString();
function if
} else var expires = ""; document.cookie = nombre+"="+valor+expires+"; path=/";
} getCookie(nombre) { nombreAux = nombre+ "="; var aCookies = document.cookie.split(';'); for (var i=0;i < aCookies.length;i++) { var c = aCookies [i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nombreAux) == 0) return c.substring(nombreAux.length,c.length);