/* main function */ var tracker_uri = 'http://gracias-f.com/acc_count.php'; // リファラ var ref=encodeURIComponent(parent.document.referrer); // ページタイトル var title =encodeURIComponent(document.title); // ページURL var url =encodeURIComponent(document.location.href); /* access counter */ onload_track(); function onload_track(){ var post_uri = tracker_uri+'?title='+title+'&ref='+ref+'&url='+url; //window.alert("post_uri " + post_uri); try{ var img = new Image(); img.src = post_uri; msleep(1000); }catch(e){ window.alert(e) ; } } function msleep(msec){ var begin = new Date(); var end = begin.getTime() + msec; var now; while(true){ now = new Date(); if(now.getTime() > end){return;} } }