function imprimir(){

	if(window.print){

		window.print();

	} else {

		window.alert("Su navegador no soporta esta opcion");

	}

}

function colorea(src, hex){

	src.bgColor = hex;

}

function setear(estilo){

	document.getElementById('css').href = "./css/" + estilo + ".css";
	document.getElementById('css').disabled = false

}