Thanks esedirect! That is very helpful!
I'll return the favor... although this may be a bit of a hack. You can override the default news page title, and meta tags in news.aspx.cs in the Page_Load event. You can see by default it pulls the page title from the string resources, but doesn't do anything for the meta tags. If you want to do it right you might write some manageable way to load the meta tags here as well. I just hardcoded it... 
Code:
protected void Page_Load(object sender, System.EventArgs e)
{
if(AppLogic.AppConfigBool("GoNonSecureAgain"))
{
SkinBase.GoNonSecureAgain();
}
// this may be overwridden by the XmlPackage below!
SectionTitle = AppLogic.GetString("news.aspx.1", SkinID, ThisCustomer.LocaleSetting);
// set the Customer context, and set the SkinBase context, so meta tags to be set if they are not blank in the XmlPackage results
XmlPackage1.SetContext = this;
SectionTitle = "Lynx System Integrators News";
SETitle = "Lynx System Integrators News";
SEDescription = "Lynx System Integrators News - Tips, Info, and more.";
}
Hopefully this helps some of you!
Regards,
Ben