I've 'tweaked' the theme files a little to fix up the META keywords and the HTML title attribute.
I modified the following code within index.template.php. I'll admit it's rather crude but it works;
echo '<title>';
if ($context['page_title'] == "Network Infrastructure Forums - Nortel, Cisco, Motorola, Juniper and others - Index") {
echo $context['page_title'];
} else {
echo $context['page_title'],' | Network Infrastructure Forums - Nortel, Cisco, Motorola, Juniper and others';
}
echo '</title>';
This will essentially add the name of the site to the end of the HTML title, so that in bookmarks and web searching folks will have some idea of what site is hosting this information.