function initSelect1(key)
{
for (var i=0;i<document.SearchForm.Country.options.length;i++){
    if (document.SearchForm.Country.options[i].value==key)
      document.SearchForm.Country.selectedIndex = i;
	}
}


function initSelect11(key)
{
for (var i=0;i<document.SearchForm.State.options.length;i++){
    if (document.SearchForm.State.options[i].value==key)
      document.SearchForm.State.selectedIndex = i;
	}
}

function initSelect3(key)
{
for (var i=0;i<document.ListForm.SearchCountry.options.length;i++){
    if (document.ListForm.SearchCountry.options[i].value==key)
      document.ListForm.SearchCountry.selectedIndex = i;
	}
}

function initSelect33(key)
{
for (var i=0;i<document.ListForm.SearchState.options.length;i++){
    if (document.ListForm.SearchState.options[i].value==key)
      document.ListForm.SearchState.selectedIndex = i;
	}
}

function initActionsSearch(key1,key2)
{
var convkey1 = unescape(key1);
var convkey2 = unescape(key2);
convkey1 = convkey1.replace("+"," ");
convkey2 = convkey2.replace("+"," ");

fillcountry(document.SearchForm.Region, document.SearchForm.Country,0);
initSelect1(convkey1);
fillstate(document.SearchForm.Country, document.SearchForm.State,1);
initSelect11(convkey2);

fillcountry(document.ListForm.SearchRegion, document.ListForm.SearchCountry,0);
initSelect3(convkey1);
fillstate(document.ListForm.SearchCountry, document.ListForm.SearchState,1);
initSelect33(convkey2);
}
