// JavaScript Document function displayTab(id, id2, tab) { e = document.getElementById(id); f = document.getElementById(id2); if (e.style['display'] != 'block') { e.style['display'] = 'block'; f.style['display'] = 'none'; } document.getElementById('tabs').style.backgroundImage = "url(http://www.daytondailynews.com/custom/nospider/impl/images/oh_tabs_" + tab + ".gif)"; } //{ // set all the tabs to not display //demoTabId.style.display = "none"; //contactTabId.style.display = "none"; //otherTabId.style.display = "none"; // set the selected tab to display //var ctrl = document.getElementById(tab) //ctrl.style.display = "block"; //}