﻿// Change cell colour
function changeCellColour(obj, newColor)
{
	obj.style.backgroundColor = newColor;
}

// Basic search function
function SubmitSearch()
{
    // Check to see if the search field is defaulted
    ClearSearchField();
    
    // Set the hidden country field with the id of the selected country in the drop down list
    document.searchform.hidden_country.value = document.searchform.ctl00$search_country.value;
    
    // Submit the search form
    document.searchform.submit();
}

function ClearSearchField()
{
    if(document.searchform.search_criteria.value == "e.g. Security")
    {
        document.searchform.search_criteria.value = "";
    }
}