function mostrar() {
	var tarot = (rand(21) + 1);
	document.tarot.action="http://www1.uol.com.br/bemzen/random2/tarot2/"+tarot+".html";
	return true;
}
function rand(num) {
	var data = new Date();
	return (Math.floor(Math.random() * data.getTime()) % (num + 1));
}
