// JavaScript Document
function logout()
{
	if (confirm("Ok to logout?"))
		document.location.href = '/security/logout.php';	
}