Found a solution using php. Here it is if anyone is interested:
If a given content page looks like this:
Code:<?php include 'header.php';?>
content... content... content...
<?php include 'footer.php';?>
you would put this in header.php:
Code:<title><?=$title?></title>
and make this change to each content page:
Code:<?php $title='Page Title'; include 'header.php';?>