I like to right click my back button in my browser and see a list of the category titles (loading from the page title) in the browser. This happens in the front-end catalog side but doesn't in the back-end admin side.

I went ahead and added
Code:
<?php
define('TITLE', 'Admin'); 
?>
to my index.php in the admin folder and

Code:
<?php
define('TITLE', 'Easy Populate');
?>
to the easypopulate.php file in the admin folder

I'd like for this to happen automatically for all the admin pages though. At least for the categories and sub-categories.

Is this at all possible?