function add_hotel_visit_log(prop_name, url, link, temp)
{
    var argument = "prop_name" + "=" + encodeURIComponent(prop_name) + "&" + "url" + "=" + encodeURIComponent(url) + "&" + "temp" + "=" + temp;

    $.post("ajax_add_hotel_visit_log.php", argument, function(data, status)
    {
        console.log(data);
    });

    setTimeout(function(){ window.location.href = link; }, 100);

    return;
}