
var v_about_monex = {
	v_flag : "",

	f_link : function() {
		switch(v_about_monex.v_flag) {
			case 1 :
				if(window.opener) window.opener.focus();
				if(!window.opener) location.href = "http://www.monexgroup.jp/";
				break;
			default :
				location.href = "http://www.monexgroup.jp/";
				break;
		}
	},

	f_ckURL : function() {
		if(window.name && window.name == "feelMonex") {
			v_about_monex.v_flag = 1;
		} else {
			v_about_monex.v_flag = "";
		}
	},

	f_ckScreen : function() {
		var v_sHeight = screen.height;

		var f_yScroll = function() {
			if(v_IE) document.getElementsByTagName("div")[0].style.cssText = "height:650px;";
			if(!v_IE) document.getElementsByTagName("div")[0].setAttribute("style", "height:650px;");
		};

		if(screen.height < 601) f_yScroll();
	}
};

v_about_monex.f_ckURL();

window.addEventListener("load", v_about_monex.f_ckScreen, true);
