﻿/* ------------------------------------------------------
   更新履歴
------------------------------------------------------ */
/* 2010/3/1
   ・サイトセンサスタグ削除対応
   
/* 2009/11/25
   ・サイトカタリスト

/* 2009/10/01
   ・レコメンドビーコン画像出力処理追記

/* 2008/12/19
   ・新規作成
------------------------------------------------------ */


/******************************************************************************/
//etoyota.net効果検証ビーコン用JS読み込み

var protocol = location.protocol.indexOf('https') > -1 ? 'https:' : 'http:';
var url = protocol + '//etoyota.net/include/js/measurementBeacon.js';

document.write('<script src="' + url + '" type="text/javascript"></script>');


/******************************************************************************/
//Google Analystics用JS読み込み
if(location.protocol.indexOf('https') == -1){
	document.write('<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>');
}else {
	document.write('<script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript"></script>');
}



/******************************************************************************/
//ビーコン出力

function outputBeacon(){
	var htmlStr = "";

	etoyota_bc();
	google_bc();
	recommend_bc();
	SCoutput_bc();
}

/******************************************************************************/
//etoyota.net効果検証ビーコン

function etoyota_bc(){
	//eTOYOTA.net Beacon START
	measurementBeacon();
}

/******************************************************************************/
//ビーコン出力

function SCoutput_bc(){

	//s_code.jsの読み込み
	var catalystStr = "";
	catalystStr += '<script language="JavaScript" type="text/javascript">';
	catalystStr += ' var SCaccount="toyotamotormarineprd"';
	catalystStr += '</script>';
	if(location.protocol.indexOf('https') == -1){
		catalystStr += '<script language="JavaScript" src="http://toyota.jp/include/js/s_code_v2.js"></script>';
	}else {
		catalystStr += '<script language="JavaScript" src="https://toyota.jp/include/js/s_code_v2.js"></script>';
	}
	document.write(catalystStr);
}

/******************************************************************************/
//Google Analystics ビーコン

function google_bc(){
	//Google Analystics start
	if (location.protocol.indexOf('https') == -1) {
		_uacct = "UA-641300-9";
	} else {
		_uacct = "UA-641300-10";
	}
	urchinTracker();
	//Google Analystics end
}
/******************************************************************************/
//レコメンド ビーコン

function recommend_bc(){
	if(window.location.protocol.indexOf('https') == -1){
		var colledurl = 'http://' + window.location.host + window.location.pathname + window.location.search;
		var beaconurl = 'http://search.toyota.jp/image/beacon.gif?item=' + escape(colledurl);
		var imgtag = '<img src="' + beaconurl + '">';
		document.write(imgtag);
	}
}
/******************************************************************************/

