function checkInfo()
{
	with (window.document.catalogSignup) {


		if (isEmpty(FirstName, 'Enter first name')) {
			return false;
	/*	} else if (isEmpty(LastName, 'Enter last name')) {
			return false;
		} else if (isEmpty(Address1, 'Enter address')) {
			return false;
		} else if (isEmpty(State, 'Enter province/state')) {
			return false;
		} else if (isEmpty(City, 'Enter town/city')) {
			return false;
		} else if (isEmpty(PostalCode, 'Enter the postal/zip code')) {
			return false;
		} else if (isEmpty(Country, 'Enter the country')) {
			return false; */
		} else {
			return true;
		}
	}
}


function setFormReqNews(isChecked)
{
	with (window.document.frmCheckout) {
		if (isChecked) {
			txtShippingFirstName.value     = "Same as payment";
			txtShippingFirstName.readOnly  = true;
			txtShippingLastName.readOnly   = true;
			txtShippingAddress1.readOnly   = true;
			txtShippingAddress2.readOnly   = true;
			txtShippingPhone.readOnly      = true;
			txtShippingCity.readOnly       = true;
			txtShippingPostalCode.readOnly = true;
			
		} else {
			txtShippingFirstName.readOnly  = false;
			txtShippingLastName.readOnly   = false;
			txtShippingAddress1.readOnly   = false;
			txtShippingAddress2.readOnly   = false;
			txtShippingPhone.readOnly      = false;		
			txtShippingCity.readOnly       = false;
			txtShippingPostalCode.readOnly = false;
		
		}
	}
}