function openwin(name) {
	var filename = "profile/mem_" + name + ".html";
	window.open(filename, "", "scrollbars=yes,width=670,height=550");
}
/* パスワードチェック */
function checkpass(){
	var inputPass = document.inputpass.typepass.value;
	if(inputPass == "agplus") {
		check=inputPass+"/index.html";
	}
	else if(inputPass == "") {
		window.alert("パスワードを入力してください。");
		document.inputpass.typepass.focus();
		return false;
	}
	else {
		window.alert("パスワードが間違っています");
		document.inputpass.typepass.focus();
		document.inputpass.typepass.select();
		return false;
	}
	location.href=check;
}

/* tabをenterに変換 */
function chgKeycode(){
	if(13==event.keyCode) {
			
		event.keyCode=9;
	}
	return true;
} 
