//document.write('
');
//document.write('
');
document.write('
');
document.write('
');
document.write('
by CyberBuzz');
document.write('');
(function(){
//This script is able surely not to take all the values of the user.
//IE : OK...(It may not work depending on the setInterval settings.)
//Fx : OK...(Delicate close action.)
//OPERA : NO...(No close action, link move only!)
//Safari: OK...(More test.)
var BLOGSCOUER_URL = "http://blogscouter.cyberbuzz.jp";
var TIME_COUNT_PATH = "/tag/time.php";
var START_TIME = new Date;
var isMSIE = /*@cc_on!@*/false;
var isFx = (navigator.userAgent.match(/Firefox/i))? true: false;
var isSafari = (navigator.userAgent.match(/Safari/i))? true: false;
var isOpera = (navigator.userAgent.match(/Opera/i))? true: false;
if (!isMSIE && isSafari || isOpera) {
window.onunload = function(e) {
sendTime(START_TIME);
}
}
if (isMSIE || isFx || isSafari) {
window.onbeforeunload = function(e) {
sendTime(START_TIME);
}
}
function sendTime(startTime) {
var time = (new Date - startTime);
var image = new Image;
var url = BLOGSCOUER_URL + TIME_COUNT_PATH + "?k=8c42f927f05e5a7b33f4a85589eddc3b&s=61ec9&t=" + time + "&rm=0";
image.src = url;
}
})();