////////////////////////////////////////////////////////////////////////////////////////////////////
//
//	RGC-WEB アクセスログ取得用 JavaScriptファイル
//
//	ドメイン			www.rgc-web.com
//	サイトルート	js/access.js
//	ファイル			js/access.js
//
//	更新日			│	内容
//───────┼─────────────────────────────────────────
//	2006/06/24	│	新規作成
//
////////////////////////////////////////////////////////////////////////////////////////////////////
//━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//	設定
//━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

//取得PHP
var	src 	= "http://www.rgc-web.com/module/access.php?";

//アドレス
var url		=	window.location;
var page	=	"http://" + url.host + url.pathname + url.search + url.hash;

//モニタ
var mon		=	window.screen.width + "*" + window.screen.height + "*" + window.screen.colorDepth;

//参照元
var ref		=	document.referrer;

//━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
//	表示
//━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
document.write('<img src="',src,'page=',page,'&amp;mon=',mon,'&amp;ref=',ref,'" width="0" height="0" />');
