/* To add or remove tabs, change the number in the array below and place the uncommented code into the page. */
/* var tabs = new Array('tab1', 'tab2', 'tab3', 'tab4', 'tab5'); */

var selectedTab = null;

function showTab(tab, name)
{
	selectedTab = tab;
	for(i = 0; i < tabs.length; i++)
	{
		document.getElementById(tabs[i]).style.display = (name == tabs[i]) ? 'block':'none';
	}
	return false;
}