Below is how you set the page title for a Joomla 1.5 component.
With MVC, the standard place to put this code is going to be the view.html.php file inside your view folder.
$document = JFactory::getDocument();
$document->setTitle('Title of Page');
And that is it. Leave the comments below, hope this helped!