// JavaScript Document

function fnRedirect(selectFrm){
		var tagName =  document.getElementById(selectFrm);
		var OptionData = tagName.options[tagName.selectedIndex].text;
		if(selectFrm == 'fea')
		{
			if(OptionData == 'Sales Force Automation')
				window.location.href = 'sales-force-automation.html';
			if(OptionData == 'Web Forms')
				window.location.href = 'web-forms.html';
			if(OptionData == 'Marketing Automation')
				window.location.href = 'marketing-automation.html';
			if(OptionData == 'Customer Support & Service')
				window.location.href = 'customer-support.html';	
			if(OptionData == 'Inventory Management')
				window.location.href = 'order-management.html';	
			if(OptionData == 'Reports & Dashboards')
				window.location.href = 'reports-dashboards.html';	
			if(OptionData == 'Workflow Management')
				window.location.href = 'workflow-rules.html';
			if(OptionData == 'Role-based Security')
				window.location.href = 'role-based-security.html';		
			if(OptionData == 'Outlook Plug-in')
				window.location.href = 'outlook-edition.html';	
		}
		if(selectFrm == 'support')
		{
			if(OptionData == 'Request Support')
				window.location.href = 'request-support.html';
			if(OptionData == 'Need Features')
				window.location.href = 'need-features.html';
			if(OptionData == 'User Forums')
				window.location.href = 'http://forums.zohocrm.com';
			if(OptionData == 'Testimonials')
				window.location.href = 'testimonials.html';
			if(OptionData == 'Documentation')
				window.location.href = 'documents.html';
		}
	}
