var PLEASE_SELECT_CODE = '---';

function BillCountrySelect()
{
	if (document.frmProfile.lstBill_Country.value == 'US')
	{
		document.frmProfile.txtBill_Province.value = '';
		document.getElementById("rowBill_State").style.display = '';
		document.getElementById("rowBill_Province").style.display = 'none';
	}
	else
	{
		document.frmProfile.lstBill_State.value = PLEASE_SELECT_CODE;
		document.getElementById("rowBill_State").style.display = 'none';
		document.getElementById("rowBill_Province").style.display = '';
	}
}
function ShipCountrySelect()
{
	if (document.frmProfile.lstShip_Country.value == 'US')
	{
		document.frmProfile.txtShip_Province.value = '';
		document.getElementById("rowShip_State").style.display = '';
		document.getElementById("rowShip_Province").style.display = 'none';
	}
	else
	{
		document.frmProfile.lstShip_State.value = PLEASE_SELECT_CODE;
		document.getElementById("rowShip_State").style.display = 'none';
		document.getElementById("rowShip_Province").style.display = '';
	}
}
function CopyBillingAddress()
{
	document.frmProfile.txtShip_First_Name.value = document.frmProfile.txtBill_First_Name.value;
	document.frmProfile.txtShip_Last_Name.value = document.frmProfile.txtBill_Last_Name.value;
	document.frmProfile.txtShip_Company.value = document.frmProfile.txtBill_Company.value;
	document.frmProfile.txtShip_Address_1.value = document.frmProfile.txtBill_Address_1.value;
	document.frmProfile.txtShip_Address_2.value = document.frmProfile.txtBill_Address_2.value;
	document.frmProfile.txtShip_City.value = document.frmProfile.txtBill_City.value;
	document.frmProfile.lstShip_State.value = document.frmProfile.lstBill_State.value;
	document.frmProfile.txtShip_Province.value = document.frmProfile.txtBill_Province.value;
	document.frmProfile.lstShip_Country.value = document.frmProfile.lstBill_Country.value;
	document.frmProfile.txtShip_Zip_Postal_Code.value = document.frmProfile.txtBill_Zip_Postal_Code.value;
	document.frmProfile.txtShip_Telephone.value = document.frmProfile.txtBill_Telephone.value;
	document.frmProfile.txtShip_Telephone_Ext.value = document.frmProfile.txtBill_Telephone_Ext.value;
	ShipCountrySelect();
}
