<!--
function ConfirmLogOut()
{
var agree = confirm("Are you sure you wish to log out?");
	if (agree) {
		return true ;
	} else {
		return false ;
	}
}
// -->
