if(navigator.appName.indexOf('Microsoft',0) > -1  ){ 
	window.attachEvent('onload',accer_Class); 
}else{ 
	window.addEventListener('load',accer_Class,false); 
} 

function accer_Class(){ 

var src = "http://www.hana-yome.jp/accer.exe?m=in"; 
src += "&ti=" + "0"; 
src += "&sw=" + screen.width; 
src += "&sh=" + screen.height; 
src += "&co=" + screen.colorDepth; 
src += "&ih=" + ((document.body.clientHeight) ? document.body.clientHeight : 
window.innerHeight) 
src += "&iw=" + ((document.body.clientWidth) ? document.body.clientWidth : 
window.innerWidth); 
src += "&ref=" + escape(document.referrer); 
src += "&fs=" + ((document.body.currentStyle) ? 
document.body.currentStyle.fontSize : ""); 
src += "&ff=" + ((document.body.currentStyle) ? 
escape(document.body.currentStyle.fontFamily) : ""); 
src += "&script=1"; 

var accer_temp = document.createElement("img"); 
accer_temp.src = src; 
accer_temp.width = 0; 
accer_temp.height = 0; 

var accer_parent = document.getElementById('footer'); 
accer_parent.appendChild(accer_temp); 
} 


