function onload_turisbarra() {
	document.write("");
}

function carrega_dados_hotel(id) {
    $.ajax({
                type:'GET',
                url: 'http://www.turisbarra.com/proxy.php',
                data:'id_hotel='+id ,
                success: function(data){
                        $("#quadro_site_novo").html(data);
                }
             });  	
}


