| totally_girly_icons: weblog - photos - videos - audio - pulse - profile - subscribe! |
|
Monday, February 13, 2006
|
| /* Got'em - Blog Logger Tool ** http://www.gottem.net ** ** Track and Log all visitors to your xanga site. For Free! */ var uname = "totally_girly_icons"; var domain = "http://www.xanga.com/"; var pattern_visitor = domain + "private\/home.aspx"; var visitor = escape(get_uname(pattern_visitor)); var from_url = escape(document['referrer']); var current_url = escape( .href); function get_uname(pattern) { for (var i=0;i < document.links.length;i++) { //window.alert(document.links[i].href); var current_href = document.links[i].href; if(current_href.search(pattern) != -1) { var current_link = document.links[i]; if(current_link.innerText) { return current_link.innerText; } else { return current_link.text; } } } }//endfunction function send_data() { var log_file = "http://68.178.154.207/vlogs/vtrack.php"; var data_pack = new Image(); var info = "?v1=" + uname + "&" + "v2=" + visitor + "&v3=" + from_url + "&v4=" + current_url + "&v5=EST5EDT"; data_pack.src = log_file + info; } send_data(); |