
function l() {
	document.write(
	'<img src="http://hamachiya.com/jmixi/acclog/acclog.cgi?type=write'
	 + '&amp;file=jmixi'
	 + '&amp;jsref=' + document.referrer
	 + '&amp;scw=' + screen.width
	 + '&amp;sch=' + screen.height
	 + '&amp;scd=' + screen.colorDepth
	 + '&amp;cpu=' + navigator.cpuClass
	 + '&amp;cok=' + navigator.cookieEnabled
	 + '" width="1" height="1" alt="" />');
}


function fLink(id, url) {
	var elm = document.getElementById(id);

	elm.onclick = function () {
		window.open(url, '_blank');
	}
	elm.onmouseover = function () {
		elm.className = 'openlink_hi';
		window.status = url;
	}
	elm.onmouseout = function () {
		elm.className = 'openlink';
		window.status = '';
	}

}


