// Cambio de classe
function change(id,clase1, clase2) {
 var elemento = document.getElementById(id);
 if (elemento.className == clase1)	elemento.className = clase2;
 else elemento.className = clase1;
}

function verCarta(edicion,nombre){ 
	//location.href="http://www.evocacion.com/magic-the-gathering/" + edicion + "/" + nombre + ".htm";
	location.href="http://localhost/Magic%20The%20Gathering/magic-the-gathering/" + edicion + "/" + nombre + ".php";
}