

/*
* Controls the worldwide dropdown when a site selected
*
*/
function selWorldwide_OnChange(source) 
{
    var value = source.options[source.selectedIndex].value;
    try 
    {
        if (value != null && value != "") 
        {
            window.location = value;
        }
    }
    catch (e) 
    {
    }
}

    
/*
* Clears the search box at the top of the page when it is focused
*
*/    
function clearSearchBox(searchBoxField)
{
    searchBoxField.value = '';
}
