//**********************************************************
//    全ページ共通で使用されるJavaScript
//            - require jquery.js
//            - require /common_basetemplate/js/library.js
//                      (openpop関数を使用しているため)
//                                    muraki@triax.jp
//**********************************************************

//--------------------------------------------------
// 
// お問い合わせ画面へのPOSTを別画面で開く関数
// 
//--------------------------------------------------
function open_window_submit(){
	openpop(null, "850", "850");
	$(this).parent("form").submit();
	return false;
}

//--------------------------------------------------
// 
// kencorp.co.jpへのリンクでgoogle analyticsの
// 情報を引き継ぐための処理を登録
// 
//--------------------------------------------------
function regist_ga_tracking_event(){
	$("a[href*=www.kencorp.co.jp]").each(function(){
		var self = this;
		$(this).click(function(){
			pageTracker._link(self.href);
			return false;
		});
	});
}

// execute function on document ready
$(function(){
	$(".contact_button_form :image").click(open_window_submit);
	regist_ga_tracking_event();
});
