// -----------------------------------------------------------------------------
// The script below used for the advanced search link
function advancedSearchClick()
{
    txtSearch = document.getElementById("txtSearch")
    window.location.href='http://search.redcross.org.uk/search?q=[SEARCHTERM]&entqr=0&output=xml_no_dtd&sort=date%3AD%3AL%3Ad1&client=default_frontend&ud=1&oe=UTF-8&ie=UTF-8&proxystylesheet=default_frontend&site=default_collection&filter=0&proxycustom=<ADVANCED/>'.replace('[SEARCHTERM]',txtSearch.value);
    return false
}
// -----------------------------------------------------------------------------
