<!-- protect from old browsers   SS  20-10-99

function getSelectCode(objectName)
{
  var pagename, pagecode;
  pagename = objectName.options[objectName.selectedIndex].value;
  pagecode = pagename.charAt(0) + pagename.charAt(1);
  return pagecode
}
function getSelectCountry(objectName)
{
var x, pagename, countryname;
  pagename = objectName.options[objectName.selectedIndex].value;
  countryname = "";
  for (var x = 2; x <= pagename.length; ++x )
  {
      countryname= countryname + pagename.charAt(x);
  }
  return countryname;	
}
	
function getpage(pageid)
{ //extract the distributor id and country name, pull in their page
  var country_url;
  country_url= "country" + getSelectCode(pageid) + ".asp?country=" + getSelectCountry(pageid);
  //extract text of country selection and pass to windows.open as a param
  window.open (country_url, "_self");
}
// end hiding -->




