

// Called to convert an search to an alert
function newAlert(what, where){
    document.getElementById('whereS').value = where;
    document.getElementById('whatS').value = what;

    // flip the tabs:
    showSearches();
}

function showSearches(){
    // flip the tabs:
    showMyBox('myalerts','mysearches');
}
