/* Hides the loading image & shows the results div */

function showResults(res) {
    document.getElementById('loading').style.display='none';
    document.getElementById('search_below').style.display='block';
    document.getElementById('searchLine').style.display='block';
    document.getElementById('results').style.display='inline';
}

/* Sets the loading text to some error text */

function showError(text) {
    document.getElementById('loading').innerHTML='<b>'+text+'</b>';
}