function PrintLegend(category){
	 if (category=="laptop"){
		document.getElementById("Legend").innerHTML = "<p>Processor Number = Número de procesador <br />"+
	"Cache = Caché <br />"+
	"Clock Speed = Velocidad de reloj <br />"+
	"Bus Speed = Velocidad del bus <br />"+
	"Number of Cores = Cantidad de núcleos <br />"+
	"Max TDP =  Máx. TDP <br />"+
	"Intel&reg; Virtualization Technology = Tecnología de virtualización Intel&reg; <br />"+
	"Intel&reg; 64 = Intel&reg; 64 <br />"+
	"Execute Disable Bit = Bit de desactivación de ejecución</p>";
	}else	if (category=="desktop"){
		document.getElementById("Legend").innerHTML = "<p>Processor Number = Número de procesador <br />"+
	"Cache = Caché <br />"+
	"Clock Speed = Velocidad de reloj <br />"+
	"Bus Speed = Velocidad del bus <br />"+
	"Number of Cores = Cantidad de núcleos <br />"+
	"Intel&reg; Virtualization Technology = Tecnología de virtualización Intel&reg; <br />"+
	"Intel&reg; 64 = Intel&reg; 64 <br />"+
	"Intel&reg; Trusted Execution Technology = Tecnología Intel&reg; Trusted Execution <br />"+
	"Execute Disable Bit = Bit de desactivación de ejecución</p>";
	}else	if (category=="core_desktop"){
		document.getElementById("Legend").innerHTML = "<p>Processor Number = Número de procesador <br />"+
	"Cache = Caché <br />"+
	"Clock Speed = Velocidad de reloj <br />"+
	"Bus Speed = Velocidad del bus <br />"+
	"Number of Cores = Cantidad de núcleos <br />"+
	"Intel&reg; Virtualization Technology = Tecnología de virtualización Intel&reg; <br />"+
	"Intel&reg; 64 = Intel&reg; 64 <br />"+
	"Intel&reg; Trusted Execution Technology = Tecnología Intel&reg; Trusted Execution <br />"+
	"Intel&reg; HD Graphics = Intel&reg; HD Graphics</p>";
	}else if (category=="core_mobile"){
		document.getElementById("Legend").innerHTML = "<p>Processor Number = Número de procesador <br />"+
	"Cache = Caché <br />"+
	"Clock Speed = Velocidad de reloj <br />"+
	"Max TDP =  Máx. TDP <br />"+
	"Memory Type = Tipo de memoria <br />"+
	"Intel&reg; HD Graphics = Intel&reg; HD Graphics <br />"+
	"Number of Cores = Cantidad de núcleos </p>";
	}else if (category=="itanium"){
		document.getElementById("Legend").innerHTML = "<p>Processor Number = Número de procesador <br />"+
	"Cache = Caché <br />"+
	"Clock Speed = Velocidad de reloj <br />"+
	"Bus Speed = Velocidad del bus <br />"+
	"Number of Cores = Cantidad de núcleos <br />"+
	"Max TDP =  Máx. TDP <br />"+
	"Intel&reg; Virtualization Technology = Tecnología de virtualización Intel&reg; <br />"+
	"Intel&reg; Hyper-Threading Technology = Tecnología Intel&reg; Hyper-Threading <br />"+
	"Demand Based Switching = Conmutación según demanda </p>";
	}else {
		document.getElementById("Legend").innerHTML = "<p>embedded legend</p>";
	}
}
