function showMetro()
{
//populate the items
document.getElementById("metro").innerHTML = "";
metro_html = '';
metro_html += '
Current Metro Alerts
Braddock Road: Trains are sharing the same track between Braddock Road and Huntington due to scheduled track maintenance.
L\'Enfant Plaza: Trains are sharing the same track between L\'Enfant Plaza and Mt. Vernon Square stations due to scheduled switch replacement work at Mt. Vernon Square. Expect delays in both directions.
Details at WMATA';
document.getElementById("metro").innerHTML += metro_html;
}