	
	// PHP Path
	var src = 'http://www.o-s.jp/php-nira/lapis/w.php';
	
	// Mode
	var args = '?mode=js';
	
	// Referrer Decode
	var ref = parent.document.referrer;
	if(ref){ref = (ref.indexOf(document.domain) == -1) ? ref.replace(/&/g,"::") : '';}
	
	// Referrer
	args += '&ref=' + ref;
	
	// Document Title
	//args += '&title=' + document.title;
	
	// Document URL
	args += '&url=' + document.URL;
	
	// Color Depth
	args += '&cd=' + screen.colorDepth;
	
	// Screen Width
	args += '&sw=' + screen.width;
	
	// Screen Height
	args += '&sh=' + screen.height;
	
	// Client Width
	var cw = (window.innerWidth) ? parent.window.innerWidth : '';
	if(!cw){cw = (document.documentElement.clientWidth) ? parent.document.documentElement.clientWidth : '';}
	if(!cw){cw = (document.body.clientWidth) ? parent.document.body.clientWidth : '';}
	
	args += '&cw=' + cw;
	
	// Client Height
	var ch = (window.innerHeight) ? parent.window.innerHeight : '';
	if(!ch){ch = (document.documentElement.clientHeight) ? parent.document.documentElement.clientHeight : '';}
	if(!ch){ch = (document.body.clientHeight) ? parent.document.body.clientHeight : '';}
	
	args += '&ch=' + ch;
	
	// Cookie Enabled
	var co = (navigator.cookieEnabled) ? navigator.cookieEnabled : '';
	args += '&co=' + co;
	
	// <img> 
	document.write('<img width="0" height="0" src="' + src + args + '" style="visibility:hidden;">');
	