<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">function add_hotel_visit_log(prop_name, url, link, temp)
{
    var argument = "prop_name" + "=" + encodeURIComponent(prop_name) + "&amp;" + "url" + "=" + encodeURIComponent(url) + "&amp;" + "temp" + "=" + temp;

    $.post("ajax_add_hotel_visit_log.php", argument, function(data, status)
    {
        console.log(data);
    });

    setTimeout(function(){ window.location.href = link; }, 100);

    return;
}</pre></body></html>