<!--
var currentTab = "tabs01";
var getCurrentTab = new String(window.location);
if (getCurrentTab.indexOf("?") == -1) {
	getCurrentTab = "tabs01";
} else {
	getCurrentTab = getCurrentTab.substring(getCurrentTab.indexOf("?")+1,getCurrentTab.length);
}
function tabSwitch(tabId) {
	if (tabId != currentTab) {
		
		tabsTexto = document.getElementById(currentTab);
		tabsTextLefto = document.getElementById(currentTab + "_l");
		tabsTextRighto = document.getElementById(currentTab + "_r");
		tabsTextListo = document.getElementById(currentTab + "_list");
		tabsTexto.className = "tabsText";
		tabsTextLefto.src="1px.gif";
		tabsTextRighto.src="1px.gif";
		tabsTextListo.style.display = "none";

		tabsText = document.getElementById(tabId);
		tabsTextLeft = document.getElementById(tabId + "_l");
		tabsTextRight = document.getElementById(tabId + "_r");
		tabsTextList = document.getElementById(tabId + "_list");
		tabsText.className = "tabsTextSelect";
		tabsTextLeft.src="1px.gif";
		tabsTextRight.src="1px.gif";
		tabsTextList.style.display = "block";

		currentTab = tabId;
	}
}
tabSwitch(getCurrentTab);
//-->

