I don't get it. Are you trying to compare the value of the "Customer" cookie to the literal value "'Response.Cookies("NewCustName").Value'"? It looks like that is what you are doing. Do you want to compare the values of two cookies?
Code:
If Request.Cookies("Customer").Value = Response.Cookies("NewCustName").Value Then
Peter