var biso;
var st=0;

function inputbayani(){
	if (st == 0) st=1
	biso = document.bayani.password.value;
	document.images["check"].src=biso + ".gif";
}

//パスワードが違うときに飛ばすページの設定
function refusal(){
	if (st != 0 ) {
		location.href="nopass.html";//location.href="この部分を変更します。";
	}
}

//パスワードがあっている時
function attestation(){
	location.href=biso + ".html";
}
