// Comprobar si el navegador es compatible con window.addEventListener
if (window.addEventListener) {
	// Variables de almacenamiento de teclas y de keylist
	var 	keys = [],
		cheat_mode = 0,
        	keylist = "38,38,40,40,37,39,37,39,66,65";
 
	// Asociar el evento de pulsacin a la funcin
	window.addEventListener("keydown", function(e){
		// Insertar tecla pulsada en el array
		keys.push(e.keyCode);
	
		// Comprobar que se ha pulsado la secuencia
		if(keys.toString().indexOf(keylist) >= 0){
			// Limpiar array
			keys = [];
            		
			if(cheat_mode == 0){
				cheat_mode = 1;
       				document.getElementById("keycheat").innerHTML = "<img class=\"float-left\" src=\""+smf_images_url+"/miniJuancho.png\"/>";	
			}else{
				cheat_mode = 0;
       				document.getElementById("keycheat").innerHTML = "";
			};

 
		};
   	 }, true);
};