
function addProvider(url,adult) 
{
    if (adult == "true") 
    {
        var confirmAdult = confirm("This search plugin points to a website which may contain adult content. By clicking 'OK' you confirm you are old enough and it is legal in your country of residence to view this type of content.")
        if (confirmAdult) 
        {
        } 
        else 
        {
            return;
        }
    }
    try 
    {
        window.external.AddSearchProvider(url);
    } 
    catch (e) 
    {
        alert("You need to be using IE7 or Firefox2 to add a search engine\r\nYou can also install search plugins by using the drop down menu to the right of the search box.");
        return;
    }
}
