/*
var text="Are you sure you want to log out?"; //required for the text appearing in the javascript below
*/
var text="ログアウトされますか?";
function logout() 
{
var answer=confirm(text); 
if (answer) {
window.location.href="../proc/log_out.php";
}
}