// JavaScript Document
function abreResposta()
{
	var testa =document.getElementById("answer");
	if(testa == null)
	{
		var d = document.createElement("div");
		d.setAttribute("id", "answer");
		var ask = document.getElementById("ask");
		d.style.padding = "3px";
		d.style.width = "230px";
		d.style.height = "auto";
		d.style.border = "thin solid #333";
		d.style.backgroundColor = "#FFF";
		d.style.position = "relative";
		d.style.zIndex = "1000";
		var p = document.createElement("p");
		var br = document.createElement("br");
		var txt = document.createTextNode("Algumas caravanas têm o valor em dólares e as taxas ainda não foram definidas, por isso não aparecem na lista.");
		var fecha = document.createElement("a");
		fecha.setAttribute("href", "javascript:fechaAsk();");
		var txtFecha = document.createTextNode("fecha");
		fecha.appendChild(txtFecha);
		p.appendChild(txt);
		d.appendChild(p);	
		d.appendChild(br);
		d.appendChild(fecha);
		ask.appendChild(d);
	}
	else
	{
		testa.style.display = "block";	
	}
}

function fechaAsk()
{
	var div = document.getElementById("answer");
	div.style.display = "none";
}