function doVoid()
{}

function showCountryGroupfilter(param)
{
    obj = document.getElementById('filter_countrydetails');
    if (param == 1)
    {
        filterobj = document.getElementById('filter_country');
        if (!filterobj.selectedIndex)
        {
            errorobj = document.getElementById('filter_countrydetails_errornote');
            errorobj.style.display = '';
        }
        else
        {
            obj.style.display = '';
            errorobj = document.getElementById('filter_countrydetails_errornote');
            errorobj.style.display = 'none';
        }
    }
    else
    {
        errorobj = document.getElementById('filter_countrydetails_errornote');
        errorobj.style.display = 'none';
        obj.style.display = 'none';
        selectObj = document.getElementById('group_countrydetails');
        selectObj.selectedIndex = 0;
    }
}


function checkCountrygroup(param)
{
    if (param==0)
    {
        groupselectbox = document.getElementById('group_data');
        if (groupselectbox.selectedIndex == 1)
        {
            errorobj = document.getElementById('filter_countrydetails_errornote');
            errorobj.style.display = '';
            obj = document.getElementById('filter_countrydetails');
            obj.style.display = 'none';
            selectObj = document.getElementById('group_countrydetails');
            selectObj.selectedIndex = 0;
        }
    }
    else
    {
        errorobj = document.getElementById('filter_countrydetails_errornote');
        errorobj.style.display = 'none';

        groupselectbox = document.getElementById('group_data');
        if (groupselectbox.selectedIndex == 1)
        {
            obj = document.getElementById('filter_countrydetails');
            obj.style.display = '';
        }
    }
}

function placeLoadinginfo(container)
{
    obj = document.getElementById(container);
    obj.innerHTML = "loading...<br><img src='/pix/loading_grey.gif'>";
}

function doUserLogin(actioncode)
{
    xajax_hypose(actioncode, xajax.getFormValues('loginform'));
    return false;
}

