/*
============================================================
	Get Acc
============================================================
*/
function getAcc(ssl) {
	if (ssl == 'on') {
		var uri = 'http://www.yoshinogari.jp';
	} else {
		var uri = 'http://www.yoshinogari.jp';
	}

	if (uri.match(location.hostname)) {
		var getAcc1  = '<img src="' + uri + '/admin/access/get_acc.php?';
			getAcc1 += 'ref=' + escape(document.referrer) + '&';
			getAcc1 += 'width=' + screen.width + '&';
			getAcc1 += 'height=' + screen.height + '&';
			getAcc1 += 'color=' + screen.colorDepth + '" border="0" width="1" height="1" />';
		document.write(getAcc1);
	}
}