Файл: apwa/styles/red-gold/template/ads.js
Строк: 17
<?php
<script type="text/javascript">
function countAdClick(id)
{
loadXMLDoc('{ADS_CLICK_FILE}?a=' + id);
}
function countAdView(id)
{
loadXMLDoc('{ADS_VIEW_FILE}?a=' + id);
}
function loadXMLDoc(url) {
req = false;
if(window.XMLHttpRequest) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}
if(req) {
req.open("GET", url, true);
req.send(null);
}
}
</script>
?>