// ボタンイメージ切替
function mouseover(obj,image) {
	obj.src=image;
}

function mouseout(obj,image) {
	obj.src=image;
}

//【ログイン】ボタン制御
// ポップアップ画面開く
function toLogin(url,id) {
	w = 400; // 横幅
	h = 480; // 縦幅	  
	x = (screen.width  - w) / 2;
	y = (screen.height - h) / 2;

	var myVer = getVersion();
	if(myVer == "6.0") {
		window.open("../html/login.html?dispmode="+url+"&"+id, "mamma", "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width=235, height=387, menubar=0, location=0, status=0, scrollbars=0, resizable=0, titlebar=0");
	} else if(myVer == "7.0") {
		window.open("../html/login.html?dispmode="+url+"&"+id, "mamma", "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width=185, height=387, menubar=0, location=0, status=0, scrollbars=0, resizable=0, titlebar=0");
	} else {
		window.open("../html/login.html?dispmode="+url+"&"+id, "mamma", "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width=185, height=387, menubar=0, location=0, status=0, scrollbars=0, resizable=0, titlebar=0");
	}
}

