//==========================================================================
//別ウィンドウ（お問い合わせ）リンク場所によって、イベントトラッキングを変更
//==========================================================================

//[jQuery]左メニュー内リンク
$(function(){
	$('.pop_exp').click(function(){
		var pop_exp;
		pop_exp = window.open(this.href, "pop_exp","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=500");
		pop_exp.focus();
		return false;
	});
});
