			function toggleStep2(type)
			{
				var phoneAnchor = document.getElementById('phoneAnchor');	
				var textAnchor = document.getElementById('textAnchor');	
				var voiceprintAnchor = document.getElementById('voiceprintAnchor');	
				var phoneSpan = document.getElementById('phoneSpan');
				var textSpan = document.getElementById('textSpan');	
				var voiceprintSpan = document.getElementById('voiceprintSpan');

				phoneAnchor.style.fontWeight = (type == 'phone' ? 'bold' : 'normal');	
				textAnchor.style.fontWeight = (type == 'text' ? 'bold' : 'normal');
				voiceprintAnchor.style.fontWeight = (type == 'voiceprint' ? 'bold' : 'normal');

				phoneSpan.style.display = (type == 'phone' ? '' : 'none');
				textSpan.style.display = (type == 'text' ? '' : 'none');
				voiceprintSpan.style.display = (type == 'voiceprint' ? '' : 'none');
			}
