
function help( id)
{
   var div = document.getElementById( id);
   if ( div)
     div.style.display = 'block';
}


//
//function goUS()
//{
//   form = document.getElementById('searchForm');
//   searchBy = document.getElementById('searchBy');
//   searchBy.value='country';
//   country = document.getElementById('country');
//   country.value = 'US';
//   form.submit();
//
//}

function countries()
{
    form = document.getElementById('searchForm');
    form.elements['country'].value = 'yes';
    form.submit();
}
