﻿function SearchRocketLawyer (inputElement)
{
    var formSearch = inputElement.val();
    if (formSearch != null && formSearch != "")
        window.location = formSearch;
}
function IsRocketLawyerDropDownSelected()
{
    var searchOptions = document.getElementById("search_options");
    if (searchOptions != null)
        return (searchOptions.value != '0');
}
function LegalFormsSearch()
{
	if(IsRocketLawyerDropDownSelected())
    {
        SearchRocketLawyer($j("#search_options:input"));
        return false;
    }
    else
    {
        alert("Please Select a value from the dropdown");
        return false;
    }
}
$j(document).ready(function() {
    $j("#legal_forms_home_search_button, #legal_forms_secondary_search_button, #legal_forms_helppage_search_button").click(LegalFormsSearch);
});
