﻿function jsOnLoadHeader(strButton, bAllowCountry)
{
  if (document.getElementById("menu_" + strButton) != null)
    document.getElementById("menu_" + strButton).className = "on";

	if (bAllowCountry != null && !bAllowCountry)
  	document.getElementById("hdrCountryCode").disabled = true;

  return true;
}

function hdrOnCountry()
{
  var objCountry = document.getElementById("hdrCountryCode");
	var strCountryCode = objCountry.options[objCountry.selectedIndex].value;

	if (strCountryCode == "GB")
	  location.href = "default.asp?cc=" + strCountryCode + "&page=" + document.getElementById("hdr3URL").value;
	else if (strCountryCode != "")
	  location.href = "default_us.asp?cc=" + strCountryCode + "&page=" + document.getElementById("hdr3URL").value;
}
