//-------------------------------------------------------------------------
// CHONMAGE (CHaser ON the MArketing GEography) ver2.0
//-------------------------------------------------------------------------

base_url = 'http://www.sukesan.well-ness.jp/cgi-bin/cs/wellness_jp/';
base_url_for_ssl = 'https://www.sukesan.well-ness.jp/cgi-bin/cs/wellness_jp/';

//-----------------
// [ ssl]  or [ non ssl ]
//-----------------

//alert("test");

var ssl_urlstring = "https://";
var get_URL = location.href;


//URL include https:// ?
if(0 <= get_URL.indexOf(ssl_urlstring)){
	base_url = base_url_for_ssl;
}


//-----------------
// trucking function
//-----------------
function chonmage(ex)
{
	myDate = new Date();
	unq_code = "" + myDate.getTime() + Math.floor(Math.random() * 999999);

	set_prm = 'r=';
	prm     = document.referrer;
	set_prm += escape(prm);
	set_prm += '&amp;';
	set_prm += 'u=';
	prm     = window.location;
	set_prm += escape(prm);
	if(ex){ set_prm += ex;}

	set_prm += '&amp;';
	set_prm += 'd=';
	prm     = unq_code;
	set_prm += escape(prm);
	set_prm += '&amp;';
	call = base_url + 'cs.cgi?' + set_prm;
	document.write("<img src=\"" + call + "\" width=1 height=1><br />");
}
