<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/_functions/users.functions.php');
if(isset($_GET['destination']))
$destination = $_GET['destination'];
else
$destination = '/';
session_start();
$logout = logout($_SESSION, $destination);
session_destroy();
setcookie('tampabaynetworkersLoggedIn', NULL, 0, '/');
/* EOF */