
function showHotel( hotelId ) {
	
    http.open("GET", "ajax/showHotel.php?hotel_id=" + hotelId, true);

	http.onreadystatechange = handleHttpResponseShowHotel;

//	document.getElementById("fbia_conteudo").innerHTML = "<img src='img/layout/aguarde.gif' />";
	http.send(null);
}

function handleHttpResponseShowHotel() {

  if (http.readyState == 4) {

  	x = document.getElementById("hotelDescricao");
  	
  	x.innerHTML = http.responseText;
  	
	//x = http.responseText.split("|erro");
	
	
//	if(x.length > 1) {
//		alert("Campo Email não pode estar em branco");
//	} else {
//	    alert("Email cadastrado na newsletter com sucesso");
//	}
  }
}