//==========================================================================================================================
//静的コンテンツ共通パーツスクリプト
//==========================================================================================================================
var gOtoiawasePath = "";
//==========================================================================================================================
//処理	: 非同期通信開始
function fncInitComParts(uPath){
	//パスの設定
	gOtoiawasePath = uPath;
	//非同期通信開始
	new Ajax.Request(uPath + 'fr/php/getAjaxComParts.php',
		{
			method : 'post',
			parameters: 'prmPath=' + uPath,
			onSuccess: function(request) {
				// サーバから正常にデータを受信した時
				SetAjaxJsonData(request);
			},
			onFailure: function(request) {
				// サーバからデータを受信出来なかった時
				alert("!");
			},   
			onException: function(request, ex) {
				// 送受信時に何らかのエラーが発生した時
				alert("!!");
			}
		}
	);
}

//==========================================================================================================================
//処理	: 非同期レンダリング開始
function SetAjaxJsonData(request){
	//JSON形式で取得
	var data = request.responseText.evalJSON();
	//------------------------------
	//共通情報
	//------------------------------
	//ヘッダメニュー
	document.getElementById("comHeaderMenuInner").innerHTML = data["comHeaderMenu"];
	//フッター
	document.getElementById("comFooterInner").innerHTML = data["comFooter"];
	//------------------------------
	//マイページ情報
	//------------------------------
	//ヘッダ
	document.getElementById("myPageTopBnrInner").innerHTML = data["myPageTopBnr"];
	//マイページヘッダ
	if(data["myPageHeader"] != ""){
		document.getElementById("myPageHeaderInner").innerHTML = data["myPageHeader"];
	}
	//マイページフッタ
	if(data["myPageFooter"] != ""){
		document.getElementById("myPageFooterInner").innerHTML = data["myPageFooter"];
	}
}

//==========================================================================================================================
//処理	: お問合せ(ヘッダメニュー)
function fncComHeaderMenuOtoiawase(){
	window.open(gOtoiawasePath + 'fr/otoiawase/index.php?' , '_blank', 'width=780, height=800, status=no, menubar=no, toolbar=no, scrollbars=yes');
}
//==========================================================================================================================
//処理	: お問合せ(フッター)
function fncComFooterOtoiawase(){
	window.open(gOtoiawasePath + 'fr/otoiawase/index.php?' , '_blank', 'width=780, height=800, status=no, menubar=no, toolbar=no, scrollbars=yes');
}
