function checkShippingAndPaymentInfo()
{
	with (window.document.frmCheckout)
	{
		if (isEmpty(txtShippingFirstName, 'Enter first name'))
		{
			return false;
		}
		else if (isEmpty(txtShippingLastName, 'Enter last name'))
		{
			return false;
		}
		else if (isEmpty(txtShippingAddress1, 'Enter shipping address'))
		{
			return false;
		}
		else if (isEmpty(txtShippingCity, 'Enter shipping address city'))
		{
			return false;
		}
		else if (isEmpty(txtShippingState, 'Enter shipping address county'))
		{
			return false;
		}
		else if (isEmpty(txtShippingPostalCode, 'Enter the shipping address post code'))
		{
			return false;
		}
		else if (isEmpty(txtShippingEmail, 'Enter email address'))
		{
			return false;
		}
		else if (isEmpty(txtConfEmail, 'Confirm email address'))
		{
			return false;
		}
		else
		{
			return true;
		}
	}
}

