<!-- 
function Check(){ 
//PASSWORD 
var p_a = "\"110727_welfare-account\"", p_b = "\"@nagoya190tnk\"", p_c = "\"190tnk@nagoya\"", p_d = "\"kessan\""; 
var goto_member_pag = "sofukukenkaiin/index-kaiin.html", goto_book1_pag = "book/book.html", goto_book2_pag = "book/book2.html", goto_book3_pag = "book/book3.html" ; 
var wo = "\"" + document.PA.PASSWORD.value + "\""; 

if(wo == p_a){ 
location.href = goto_member_pag; 
} 
else if(wo == p_b){ 
location.href = goto_book1_pag; 
} 
else if(wo == p_c){ 
location.href = goto_book2_pag; 
} 
else if(wo == p_d){ 
location.href = goto_book3_pag; 
}
else{ 
alert("パスワードがまちがっています"); 
} 
} 
//--> 

