Cant find them 
snipplet of code from checkout1.aspx
C#/VB.NET Code:
<asp:Panel ID="pnlCreditCardPane" runat="server" Visible="false">
<aspdnsf:Topic runat="server" ID="CheckoutCreditCardPageHeader" TopicName="CheckoutCreditCardPageHeader" />
<asp:Literal ID="CCForm" runat="server" Mode="passThrough"></asp:Literal>
</asp:Panel>
and checkout1.aspx.cs
C#/VB.NET Code:
CCForm.Text = WriteCCPane(OrderFinalizationInstructions, BillingAddress, RequireTerms, PM);
which leads us too...
C#/VB.NET Code:
s.Append(OrderFinalizationInstructions);
s.Append("<input type=\"hidden\" name=\"paymentmethod\" value=\"" + AppLogic.ro_PMCreditCard + "\">\n");
s.Append("<p><b>" + AppLogic.GetString("checkoutcard.aspx.6", SkinID, ThisCustomer.LocaleSetting) + "</b></p>");
s.Append(BillingAddress.InputCardHTML(ThisCustomer, true, RequireTerms, true));
s.Append("<br/>");
s.Append("<p align=\"center\">");
s.Append("</p>");
then nothing.
I am really struggling to find where this code is been called from?
Any ideas?