if (currenturl.indexOf("_cache/") == -1) {
try {
$(document).ready(function () {
var url = "/inc/interface.php";
$.ajax({
type: "POST",
url: url,
data: {
Mode: "VisitCount",
Url: window.location.href,
UA: navigator.userAgent,
VisitCountTitle: visitCountTitle,
Referer: document.referrer
},
beforeSend: function (XMLHttpRequest) {
},
success: function (result) {
}, error: function (xhr, ajaxOptions, thrownError) {
}
});
});
} catch (ex) {
}
}