	
			function rootpage(obj, path)
			{	
				with (document.frmlcpAdvancedSearch)
				{
					router(obj[obj.selectedIndex].value, path);
				}
			}

			function router(val, path)
			{
				switch (val)			
				{
					//Links for Benefits Dropdown
					case '1':
						window.location.href= path + '/ui/jsp/benefits.jsp';
						break;
					case '2':
						window.location.href= path + '/ui/jsp/aboutAttorney.jsp';
						break;
					case '3':
						window.location.href= path + '/ui/jsp/tips.jsp';
						break;
						
					//Links for Articles	
					case '11':
						openArticle('glossary', path);
						break;
					case '12':
						openArticle('estateplan', path);
						break;
					case '13':
						openArticle('mostfromhealth', path);
						break;
					case '14':
						openArticle('sellinghome', path);
						break;		
						
						
					default:
						alert('Please select a valid option');
				
				}
			}
	
	

