function UpdateRows () {
	var theForm = document.CustomerInfoForm;
	var Provinces_String = " Alberta, British Columbia, Manitoba, New Brunswick, Newfoundland, Nova Scotia, Prince Edward Island, Quebec, Ontario, Saskatchewan, Yukon, Northwest Territories, Nunavut" 
	var billProvince = theForm.Billing_Prov_State.options[theForm.Billing_Prov_State.selectedIndex].value;
	var billCountry = theForm.Billing_Country.options[theForm.Billing_Country.selectedIndex].value;
	if (billProvince != "Other\/Not Applicable") {
		if (Provinces_String.indexOf(billProvince) > 0) {
			billCountry = "Canada";
			theForm.Billing_Country.value = "Canada";
		} else if (billCountry = "Canada") {
			billCountry = "USA";
			theForm.Billing_Country.value = "USA";
		}
//	} else if (Provinces_String.indexOf(billProvince) == 0) {
//		billCountry = "USA";
//		theForm.Billing_Country.value = "USA";
//	} else {
//		billCountry = "Canada";
//		theForm.Billing_Country.value = "Canada";
	}
	return true;
}
function getObj(name)
// Determine browser type
{
  if (document.getElementById)
  {
        this.obj = document.getElementById(name);
        this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
        this.obj = document.all[name];
        this.style = document.all[name].style;
  }
  else if (document.layers)
  {
        this.obj = document.layers[name];
        this.style = document.layers[name];
  }
}
function Changes (){
	if (!DHTML) return;
	var x = new getObj('Login');
	var y = new getObj('Password');
	var onoff1 = document.CustomerInfoForm.Remember_Me.checked;
	if (onoff1==true) {
		x.style.color="#1F69AD";
		y.style.color="#1F69AD";
	} else {
		x.style.color="#000000";
		y.style.color="#000000";
	}
}

var DHTML = (document.getElementById || document.all || document.layers);
