﻿// javascript file of auxillary functions that are used on landing pages

// used by the clubs page to go to anchor links from a dropdown
function dropdownLink(objDropdown)
{
    // ensure we have a valid object
    if(!objDropdown) { return; }
    
    // Find the selected location
    window.location = objDropdown.value;
}