Ok, not 100% sure if this will work, but im 99% 
The below code needs to be in the place of your title:
<title>
PHP Code:
<?php
function getpage() {
$this_page = $_SERVER['PHP_SELF'];
return $this_page;}
if(ereg("page name 1", getpage())) {
echo ('page title 1');}
elseif(ereg("page name 2", getpage())) {
echo ('page title 2');}
elseif(ereg("page name 3", $this_page)) {
echo ('page title 3');}
//you can add more by continuing the trend above
else{ echo ('page title if no matches were found'); }
?>
</title>
hope this has helped.
Bookmarks