security = new Security; $acid = ""; $language = "english"; } function is_admin() { return true; } function page_open() { // check for any routing echo "page open: route: " .$this->url;// die(); if ($this->url != "") { header("Location: $this->url"); } } function page_close() { // kill any routing //$this->url = ""; } function route($url) { $this->url = $url; } }; ?>