function updateLocation(_1){
$$(".loc").each(function(_2){
_2.hide();
});
if($("location_"+_1)==null){
createElement("location"+_1);
}else{
new Effect.Appear("location_"+_1,{duration:1.5});
}
};
function createElement(_3){
var _4=document.createElement("div");
_4.setAttribute("id",_3);
_4.setAttribute("class","loc");
_4.setAttribute("style","display: none;");
_4.update("<p style=\"text-align: center; font-size: 10px; color: #999;\">No tenemos ningun hotel registrado en esta ciudad.</p>");
$("content").appendChild(_4);
new Effect.Appear(_4.id);
};

