/*
	アクセス解析プログラム
*/

//自分のサイトのアクセス解析のURL
apUrl = "http://testpage.jp/appli/accessist4/access.php";



/*
	以下は、変更の必要なし
*/
//画像タグ生成
imageTag = "<img border='0'"
		+ " src='" + apUrl + "?"
		+ "screenwidth=" + screen.width + "&"
		+ "screenheight=" + screen.height + "&"
		+ "colordepth=" + screen.colorDepth + "&"
		+ "referer=" + escape(document.referrer)
		+ "'>";

//タグ出力
document.write(imageTag);
