<!-- Tab Display/Hide -->
<script language="JavaScript">
var activeTab='TAB1';
function SelectTab(sTabName) {

	// If the selected tab is the active one, there is nothing to do
	if (sTabName==activeTab) return;

	try{
		// Check to see which "syntax" to use (allows for all browsers)
		if (document.getElementById)
		{
		// this is the way the standards work
		var style2 = document.getElementById(sTabName).style;
		style2.display = 'block';
		var style2 = document.getElementById(activeTab).style;
		style2.display = 'none';
		var oTitle = document.getElementById(sTabName + '_TITLE');
		// oTitle.attributes('class').value = 'TabNavOn';
		oTitle.className = 'TabNavOn';
		var oTitle = document.getElementById(activeTab + '_TITLE');
		// oTitle.attributes('class').value = 'TabNavOff';	
		oTitle.className = 'TabNavOff';		
		var oTitle = document.getElementById(sTabName + '_A');
		// oTitle.attributes('class').value = 'TabNavOn';
		oTitle.className = 'TabNavOn';		
		var oTitle = document.getElementById(activeTab + '_A');
		// oTitle.attributes('class').value = 'TabNavOff';		
		oTitle.className = 'TabNavOff';		
		}
		else if (document.all)
		{
		// this is the way old msie versions work
		var style2 = document.all[sTabName].style;
		style2.display = 'block';
		style2.visibility = 'visible';
		var style2 = document.all(activeTab).style;
		style2.display = 'none';
		style2.visibility = 'hidden';
		var oTitle = document.all(sTabName + '_TITLE');
		oTitle.className = 'TabNavOn';
		var oTitle = document.all(activeTab + '_TITLE');
		oTitle.className = 'TabNavOff';	
		var oTitle = document.all(sTabName + '_A');
		oTitle.className = 'TabNavOn';
		var oTitle = document.all(activeTab + '_A');
		oTitle.className = 'TabNavOff';			
		}
		else if (document.layers)
		{
		// this is the way nn4 works
		var style2 = document.layers[sTabName].style;
		style2.display = 'block';
		style2.visibility = 'visible';
		var style2 = document.layers(activeTab).style;
		style2.display = 'none';	
		style2.visibility = 'hidden';
		var oTitle = document.layers(sTabName + '_TITLE');
		oTitle.className = 'TabNavOn';
		var oTitle = document.layers(activeTab + '_TITLE');
		oTitle.className = 'TabNavOff';	
		var oTitle = document.layers(sTabName + '_A');
		oTitle.className = 'TabNavOn';
		var oTitle = document.layers(activeTab + '_A');
		oTitle.className = 'TabNavOff';		
		}
	}catch(e){
		// Do Nothing - Ignore
	}finally{
		// Save the new tab as Active
		activeTab=sTabName;
	}
}
</script>
<!-- End Tab Display/Hide -->