function SubmitLogout() {
	if (confirm('Are you sure you want to logout?'))
		return true;
	else
		return false;
}