document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" >');document.writeln("<head>");document.writeln("    <title></title>");document.writeln('    <link rel ="stylesheet" href="http://www.bankrate.com/free-content/css/bankrate-fcc-calculators.css" type ="text/css" />');document.writeln("");document.writeln('    <script language="javascript" type="text/javascript">');document.writeln('        var cccalsizeOfWidget = "";');document.writeln('        var cccalFontValue="";');document.writeln('        var cccalselectedColor="";');document.writeln('        var ccCalvalues="";');document.writeln("        ccCalvalues = (document.getElementById('ccCal').value);");document.writeln("");document.writeln("");document.writeln("     function ccCalinit()");document.writeln("        {");document.writeln("            ccCalvalues = ccCalvalues.split(',');");document.writeln("            cccalselectedColor = ccCalvalues[0];");document.writeln("            cccalFontValue = ccCalvalues[1];");document.writeln("            cccalsizeOfWidget = ccCalvalues[2];");document.writeln("");document.writeln("            cccalSetColor(cccalselectedColor);");document.writeln("            cccalSetFontFamily();");document.writeln("            cccalSetwidgetSize();");document.writeln("");document.writeln("        }");document.writeln("");document.writeln("");document.writeln("	    function ValidateCardsCalControls() {");document.writeln("	        var interest;");document.writeln("	        var paymentCount = 0;");document.writeln("	        var flag = 0;");document.writeln("	        var creditCardBalance = document.getElementById('CreditCardBalance').value;");document.writeln("	        var creditCardInterestRate = document.getElementById('CreditCardInterestRate').value;");document.writeln("	        var amountPerMonth = document.getElementById('AmountPerMonth').value;");document.writeln("	        var desiredMonth = document.getElementById('DesiredMonth').value;");document.writeln("	        creditCardBalance = cccalStrReplace(creditCardBalance);");document.writeln("	        creditCardInterestRate = cccalStrReplace(creditCardInterestRate);");document.writeln('	        if (amountPerMonth != "see below") {');document.writeln("	            amountPerMonth = cccalStrReplace(amountPerMonth);");document.writeln("	        }");document.writeln('	        if (desiredMonth != "see below") {');document.writeln("	            desiredMonth = cccalStrReplace(desiredMonth);");document.writeln("	        }");document.writeln("	        var result_cardBalance = ValidateRange(creditCardBalance, 1, 999999, 'errCreditCardBalance');");document.writeln("	        var result_cardInterest = ValidateRange(creditCardInterestRate, 0, 99.9, 'errCreditCardInterestRate');");document.writeln("	        if (document.getElementById('selectedTextbox').value == \"0\") {");document.writeln("	            document.getElementById('errAmountPerMonth').innerHTML = \"\";");document.writeln("	            document.getElementById('errDesiredMonth').innerHTML = \"\";");document.writeln("	            document.getElementById('errccCalcommon').innerHTML = \"\";");document.writeln("	            var result_cardAmount = ValidateRange(amountPerMonth, 1, 999999, 'errAmountPerMonth');");document.writeln("	        }");document.writeln("	        else if (document.getElementById('selectedTextbox').value == \"1\") {");document.writeln("	            document.getElementById('errAmountPerMonth').innerHTML = \"\";");document.writeln("	            document.getElementById('errDesiredMonth').innerHTML = \"\";");document.writeln("	            document.getElementById('errccCalcommon').innerHTML = \"\";");document.writeln("	            var result_cardMonth = ValidateRange(desiredMonth, 1, 999, 'errDesiredMonth');");document.writeln("	        }");document.writeln("	        else {");document.writeln("	            document.getElementById('errAmountPerMonth').innerHTML = \"**\";");document.writeln("	            document.getElementById('errDesiredMonth').innerHTML = \"**\";");document.writeln("	            document.getElementById('errccCalcommon').innerHTML = \"** Please fill one of the field value\";");document.writeln("");document.writeln("	        }");document.writeln("");document.writeln("	        if (result_cardBalance && result_cardInterest && (result_cardAmount || result_cardMonth)) {");document.writeln('	           document.getElementById("ccCalresultDiv").style.display = "block";');document.writeln('	           document.getElementById("ccCalresultDiv").style.textAlign = "left";');document.writeln('	           document.getElementById("ccCalclearAll").style.display = "";');document.writeln('	           document.getElementById("Calculate_CreditCardPayOff").innerHTML = "Recalculate";');document.writeln("");document.writeln('	            if (desiredMonth == "see below") {');document.writeln("	                if (amountPerMonth >= 0) {");document.writeln("	                    while (creditCardBalance > 0) {");document.writeln("	                        interest = creditCardBalance * (creditCardInterestRate / 1200);");document.writeln("	                        if (interest > amountPerMonth) {");document.writeln("	                            break;");document.writeln("	                        }");document.writeln("	                        else if (interest == amountPerMonth && interest != 0) {");document.writeln("	                            break;");document.writeln("	                        }");document.writeln("	                        else if (Math.floor(creditCardBalance) == amountPerMonth && interest == 0) {");document.writeln("	                           creditCardBalance = parseFloat(Math.floor(creditCardBalance)) + parseFloat(Math.floor(interest)) - parseFloat(amountPerMonth);");document.writeln("	                            paymentCount = paymentCount + 1;");document.writeln("	                        }");document.writeln("	                        else if (creditCardBalance >= 1 && (creditCardInterestRate == 0) && (amountPerMonth == 0)) {");document.writeln("	                            creditCardBalance = 0;");document.writeln("	                            flag = 1;");document.writeln("	                        }");document.writeln("");document.writeln("	                        else {");document.writeln("	                            creditCardBalance = parseFloat(creditCardBalance) + parseFloat(Math.floor(interest)) - parseFloat(amountPerMonth);");document.writeln("	                            paymentCount = paymentCount + 1;");document.writeln("");document.writeln("	                        }");document.writeln("	                    }");document.writeln("	                }");document.writeln("	                if (interest == amountPerMonth && interest != 0) {");document.writeln("	                    document.getElementById('paymentCount').value = \"infinite months\";");document.writeln("	                }");document.writeln("	                else if ((interest) > amountPerMonth) {");document.writeln("	                    document.getElementById('paymentCount').value = \"infinite months\";");document.writeln("	                }");document.writeln("	                else if ((flag == 1) && (creditCardInterestRate == 0) && (amountPerMonth == 0)) {");document.writeln("	                    document.getElementById('paymentCount').value = \"infinite months\";");document.writeln("	                }");document.writeln("	                else if (creditCardBalance == 0 && (creditCardInterestRate == 0) && (amountPerMonth == 0)) {");document.writeln("	                    document.getElementById('paymentCount').value = paymentCount + \" months\";");document.writeln("	                }");document.writeln("	                else {");document.writeln("	                    document.getElementById('paymentCount').value = paymentCount + \" months\";");document.writeln("	                }");document.writeln("	            }");document.writeln('	            if (amountPerMonth == "see below") {');document.writeln("	                if (desiredMonth >= 0) {");document.writeln("	                    var temp1;");document.writeln("	                    var paymentValue = 0;");document.writeln("	                    if (creditCardInterestRate != 0) {");document.writeln("	                        var rate = parseFloat(creditCardInterestRate / 1200);");document.writeln("	                        temp1 = parseFloat(Math.pow((rate + 1), desiredMonth));");document.writeln("	                        paymentValue = parseFloat(creditCardBalance) / parseFloat((1 / rate) - (1 / (rate * temp1)));");document.writeln("	                    }");document.writeln("	                    else {");document.writeln("	                        paymentValue = parseFloat(creditCardBalance) / parseFloat(desiredMonth);");document.writeln("");document.writeln("	                    }");document.writeln('	                    document.getElementById(\'paymentCount\').value = "$" + Math.round(paymentValue * Math.pow(10, 2)) / Math.pow(10, 2) + " every month";');document.writeln("	                }");document.writeln("	            }");document.writeln('	            if (document.getElementById("paymentCount").value == "infinite months") {');document.writeln('	                document.getElementById("ccCallblError").innerHTML = "Your payments are not enough to cover the accumulated interest. Try increasing the payments.";');document.writeln("");document.writeln("	            }");document.writeln("	            else {");document.writeln('	                document.getElementById("ccCallblError").innerHTML = "";');document.writeln("	            }");document.writeln("	        }");document.writeln("");document.writeln("	        else {");document.writeln("	            document.getElementById('paymentCount').value = \"\";");document.writeln('	            document.getElementById("ccCallblError").innerHTML = "";');document.writeln("	        }");document.writeln("	    }");document.writeln("");document.writeln("	    function cccalStrReplace(str) {");document.writeln('	        str = str.split("$").join("");');document.writeln('	        str = str.split(",").join("");');document.writeln('	        str = str.split(" ").join("");');document.writeln('	        str = str.split("%").join("");');document.writeln("	        return str;");document.writeln("	    }");document.writeln("");document.writeln("	    function ValidateRange(creditCardBalance, min, max, errSpan) {");document.writeln("	        var result = false;");document.writeln('	        if (creditCardBalance == "") {');document.writeln('	            document.getElementById(errSpan).innerHTML = "*This field cannot be Blank";');document.writeln("	        }");document.writeln("	        else if (parseFloat(creditCardBalance) == creditCardBalance) {");document.writeln('	          if(errSpan == "errCreditCardInterestRate"){');document.writeln("	                if (creditCardBalance > min && creditCardBalance <= max) {");document.writeln('	                    document.getElementById(errSpan).innerHTML = "";');document.writeln("	                    result = true;");document.writeln("	                }");document.writeln("	                else {");document.writeln('	                    document.getElementById(errSpan).innerHTML = "*Please enter a value between " + min + " and " + max + "."');document.writeln("	                }");document.writeln("	          }");document.writeln("	          else{");document.writeln("	                if (creditCardBalance >= min && creditCardBalance <= max) {");document.writeln('	                    document.getElementById(errSpan).innerHTML = "";');document.writeln("	                    result = true;");document.writeln("	                }");document.writeln("	                else {");document.writeln('	                    document.getElementById(errSpan).innerHTML = "*Please enter a value between " + min + " and " + max + "."');document.writeln("	                }");document.writeln("	           }");document.writeln("	        }");document.writeln("	        else {");document.writeln('	            document.getElementById(errSpan).innerHTML = "*Please enter a number value.";');document.writeln("	        }");document.writeln("	        return result;");document.writeln("	    }");document.writeln("");document.writeln("	    function cccalFirst() {");document.writeln("	        if (isNaN(document.getElementById('AmountPerMonth').value)) {");document.writeln("	            document.getElementById('AmountPerMonth').value = \"\";");document.writeln("	        }");document.writeln("	        document.getElementById('selectedTextbox').value = \"0\";");document.writeln("	        document.getElementById('DesiredMonth').value = \"see below\";");document.writeln("	        document.getElementById('errDesiredMonth').innerHTML = \"\";");document.writeln("");document.writeln("	    }");document.writeln("");document.writeln("	    function cccalSecond() {");document.writeln("	        if (isNaN(document.getElementById('DesiredMonth').value)) {");document.writeln("	            document.getElementById('DesiredMonth').value = \"\";");document.writeln("	        }");document.writeln("	        document.getElementById('selectedTextbox').value = \"1\";");document.writeln("	        document.getElementById('AmountPerMonth').value = \"see below\";");document.writeln("	        document.getElementById('errAmountPerMonth').innerHTML = \"\";");document.writeln("	    }");document.writeln("");document.writeln("	    function ClearCardsControls() {");document.writeln("	        document.getElementById('CreditCardBalance').value = \"\";");document.writeln("	        document.getElementById('CreditCardInterestRate').value = \"\";");document.writeln("	        document.getElementById('AmountPerMonth').value = \"\";");document.writeln("	        document.getElementById('DesiredMonth').value = \"\";");document.writeln("	        document.getElementById('paymentCount').value = \"\";");document.writeln("	        document.getElementById('errCreditCardBalance').innerHTML = \"\";");document.writeln("	        document.getElementById('errCreditCardInterestRate').innerHTML = \"\";");document.writeln("	        document.getElementById('errAmountPerMonth').innerHTML = \"\";");document.writeln("	        document.getElementById('errDesiredMonth').innerHTML = \"\";");document.writeln('	        document.getElementById("ccCallblError").innerHTML = "";');document.writeln("	        document.getElementById('errccCalcommon').innerHTML = \"\";");document.writeln("	        document.getElementById('selectedTextbox').value = \"\";");document.writeln("	    }");document.writeln("");document.writeln("         function cccalSetColor(colorID)");document.writeln("         {");document.writeln('            if(colorID=="1")');document.writeln("            {");document.writeln('                document.getElementById("ccCalheaderDiv").className = "BankrateFCC_boxhead-container-small" +" BankrateFCC_calc-blue-border";');document.writeln('                document.getElementById("ccCalbodyDiv").className = "BankrateFCC_calc-container-small" + " BankrateFCC_calc-blue" + " BankrateFCC_calc-blue-border";');document.writeln('                document.getElementById("ccCalresultDiv").className = "BankrateFCC_results-container" + " BankrateFCC_calc-blue-border";');document.writeln('                document.getElementById("ccCalfooterDiv").className = "BankrateFCC_footer-container small" +" BankrateFCC_calc-dkblue";');document.writeln("");document.writeln("");document.writeln("            }");document.writeln('            if(colorID=="2")');document.writeln("            {");document.writeln('                document.getElementById("ccCalheaderDiv").className="BankrateFCC_boxhead-container-small" +" BankrateFCC_calc-orange-border";');document.writeln('                document.getElementById("ccCalbodyDiv").className = "BankrateFCC_calc-container-small" + " BankrateFCC_calc-orange" + " BankrateFCC_calc-orange-border";');document.writeln('                document.getElementById("ccCalresultDiv").className = "BankrateFCC_results-container" + " BankrateFCC_calc-orange-border";');document.writeln('                document.getElementById("ccCalfooterDiv").className="BankrateFCC_footer-container small" +" BankrateFCC_calc-dkorange";');document.writeln("");document.writeln("            }");document.writeln('            if(colorID=="3")');document.writeln("            {");document.writeln('                document.getElementById("ccCalheaderDiv").className = "BankrateFCC_boxhead-container-small" +" BankrateFCC_calc-gray-border";');document.writeln('                document.getElementById("ccCalbodyDiv").className = "BankrateFCC_calc-container-small" + " BankrateFCC_calc-gray" + " BankrateFCC_calc-gray-border";');document.writeln('                document.getElementById("ccCalresultDiv").className = "BankrateFCC_results-container" + " BankrateFCC_calc-gray-border";');document.writeln('                document.getElementById("ccCalfooterDiv").className = "BankrateFCC_footer-container small" +" BankrateFCC_calc-dkgray";');document.writeln("");document.writeln("            }");document.writeln('            if(colorID=="4")');document.writeln("            {");document.writeln('                document.getElementById("ccCalheaderDiv").className = "BankrateFCC_boxhead-container-small" +" BankrateFCC_calc-green-border";');document.writeln('                document.getElementById("ccCalbodyDiv").className = "BankrateFCC_calc-container-small" + " BankrateFCC_calc-green" + " BankrateFCC_calc-green-border";');document.writeln('                document.getElementById("ccCalresultDiv").className = "BankrateFCC_results-container" + " BankrateFCC_calc-green-border";');document.writeln('                document.getElementById("ccCalfooterDiv").className = "BankrateFCC_footer-container small" +" BankrateFCC_calc-dkgreen";');document.writeln("");document.writeln("            }");document.writeln("         }");document.writeln("");document.writeln("         function cccalSetFontFamily(){");document.writeln('           document.getElementById("ccCalbodyDiv").style.fontFamily = cccalFontValue;');document.writeln('           document.getElementById("ccCalsubheadDiv").style.fontFamily = cccalFontValue;');document.writeln('           document.getElementById("ccCaltitleDiv").style.fontFamily = cccalFontValue;');document.writeln('            if(cccalFontValue == "Verdana")');document.writeln("           cccalSetwidgetSize();");document.writeln("         }");document.writeln("");document.writeln("         function cccalSetwidgetSize() {");document.writeln('            document.getElementById("ccCalImg").style.width="115px";');document.writeln("            var moz = (typeof document.implementation != 'undefined') && (typeof document.implementation.createDocument != 'undefined');");document.writeln("            var ie = (typeof window.ActiveXObject != 'undefined');");document.writeln('            if(ie && cccalFontValue == "Verdana" && cccalsizeOfWidget=="275")');document.writeln("            {");document.writeln('                document.getElementById("ccCalImg").style.width="114px";');document.writeln("            }");document.writeln('            if(cccalsizeOfWidget=="275")');document.writeln("            {");document.writeln("                for(var i=1;i<=4;i++)");document.writeln('                document.getElementById("ccCalip" +i).style.width="180px";');document.writeln("            }");document.writeln('           else if(cccalsizeOfWidget=="300")');document.writeln("            {");document.writeln("                for(var i=1;i<=4;i++)");document.writeln('                document.getElementById("ccCalip" +i).style.width="200px";');document.writeln("            }");document.writeln('           else if(cccalsizeOfWidget=="350")');document.writeln("            {");document.writeln("                for(var i=1;i<=4;i++)");document.writeln('                document.getElementById("ccCalip" +i).style.width="230px";');document.writeln("            }");document.writeln("            if(moz){");document.writeln('               document.getElementById("ccCalbodyDiv").style.width = cccalsizeOfWidget - parseInt(20) + "px";');document.writeln('               document.getElementById("ccCalheaderDiv").style.width = parseInt(cccalsizeOfWidget)  + "px";');document.writeln('               document.getElementById("ccCalfooterDiv").style.width = parseInt(cccalsizeOfWidget) + parseInt(2) + "px";');document.writeln("");document.writeln("            }");document.writeln("            else if(ie){");document.write("                if(Checkfun())");document.writeln("              {");document.writeln('                 document.getElementById("ccCalbodyDiv").style.width = parseInt(cccalsizeOfWidget)- parseInt(20)+ "px" ;');document.writeln('                 document.getElementById("ccCalheaderDiv").style.width = parseInt(cccalsizeOfWidget)  + "px";');document.writeln('                 document.getElementById("ccCalfooterDiv").style.width = parseInt(cccalsizeOfWidget)  + parseInt(2)+ "px";');document.writeln("              }");document.writeln("              else");document.writeln("              {");document.writeln('                 document.getElementById("ccCalbodyDiv").style.width = parseInt(cccalsizeOfWidget)  + "px";');document.writeln('                 document.getElementById("ccCalheaderDiv").style.width = parseInt(cccalsizeOfWidget)  + "px";');document.writeln('                 document.getElementById("ccCalfooterDiv").style.width = parseInt(cccalsizeOfWidget)  + "px";');document.writeln('                 document.getElementById("ccCalImg").style.width="105px";');document.writeln("              }");document.writeln('               if(cccalsizeOfWidget=="275"){');document.writeln('                document.getElementById("cccalCalculate").style.marginLeft="80px";');document.writeln('                document.getElementById("ccCalclearAll").style.marginLeft="80px";');document.writeln("               }");document.writeln('               else if(cccalsizeOfWidget=="300"){');document.writeln('                document.getElementById("cccalCalculate").style.marginLeft="90px";');document.writeln('                document.getElementById("ccCalclearAll").style.marginLeft="90px";');document.writeln("               }");document.writeln('               else if(cccalsizeOfWidget=="350"){');document.writeln('                document.getElementById("cccalCalculate").style.marginLeft="120px";');document.writeln('                document.getElementById("ccCalclearAll").style.marginLeft="120px";');document.writeln("               }");document.writeln("");document.writeln("            }");document.writeln("");document.writeln("         }");document.writeln("");document.writeln("");document.writeln("      function Checkfun(){");document.writeln("        var i=0;");document.writeln("        var strToFind =/DOCTYPE/;");document.writeln("        var docCount = 0;");document.writeln("        var docChekStatus = false;");document.writeln("        var flagt_comment = false;");document.writeln("        var loopexec = true;");document.writeln("        for(i=0; i< document.all.length; i++)");document.writeln("        {");document.writeln("          if(loopexec){");document.writeln("            if(document.all[i].text != null)");document.writeln("            {");document.writeln("                var nVal = document.all[i].text;");document.writeln("                var substr = nVal.substring('1', '4');");document.writeln("                  if(substr != \"\" && substr == '!--')");document.writeln("                    flagt_comment =true;");document.writeln("");document.writeln("                if(findPos != -1)");document.writeln("                {");document.writeln("                  var substr1 = nVal.substring('1', '4');");document.writeln("                  if(substr1 != \"\" && substr1 != '!--'){");document.writeln("                    var findPos = nVal.search(strToFind);");document.writeln("                    var posd = nVal.substring(parseInt(findPos - 1), findPos);");document.writeln("                    if(posd == '!')");document.writeln("                    {");document.writeln("                      docCount = parseInt(docCount) + 1;");document.writeln("                      loopexec = false;");document.writeln("                    }");document.writeln("                  }");document.writeln("                }");document.writeln("            }");document.writeln("          }");document.writeln("        }");document.writeln("        if(docCount >= 1 && !flagt_comment)");document.writeln("           docChekStatus = true;");document.writeln("        return docChekStatus;");document.writeln("      }");document.writeln("    <\/script>");document.writeln("");document.writeln("</head>");document.writeln("<body>");document.writeln("");document.writeln('      <div id="ccCalbodyDiv" class="BankrateFCC_calc-container-small">');document.writeln('        <div id="ccCalsubheadDiv" class="BankrateFCC_subhead">What will it take to pay off my credit card?</div>');document.writeln("");document.writeln("        <!-- Script Content Begin -->");document.writeln('        <div id="ccCalip1" class="BankrateFCC_col1">Credit card balance ($):</div>');document.writeln('        <div class="BankrateFCC_col2">');document.writeln('          <input type="text" class="BankrateFCC_sel-options" id="CreditCardBalance" value="">');document.writeln("          </div>");document.writeln('        <div class="BankrateFCC_colFull">');document.writeln('          <span id="errCreditCardBalance" class="BankrateFCC_form-error"></span>');document.writeln("        </div>");document.writeln("");document.writeln('        <div id="ccCalip2" class="BankrateFCC_col1">Credit card interest rate  (%):</div>');document.writeln('        <div class="BankrateFCC_col2">');document.writeln('          <input type="text" class="BankrateFCC_sel-options" id="CreditCardInterestRate" value="">');document.writeln("          </div>");document.writeln('        <div class="BankrateFCC_colFull">');document.writeln('          <span id="errCreditCardInterestRate" class="BankrateFCC_form-error"></span>');document.writeln("        </div>");document.writeln("");document.writeln('        <div id="ccCalip3" class="BankrateFCC_col1">Payment amount per month ($):</div>');document.writeln('        <div class="BankrateFCC_col2">');document.writeln('          <input type="text" class="BankrateFCC_sel-options" id="AmountPerMonth"onclick = "return cccalFirst();" onfocus="cccalFirst();" value="">');document.writeln("          </div>");document.writeln('        <div class="BankrateFCC_colFull">');document.writeln('          <span id="errAmountPerMonth" class="BankrateFCC_form-error"></span>');document.writeln("        </div>");document.writeln("");document.writeln('        <div class="BankrateFCC_calc-or">OR</div>');document.writeln("");document.writeln('        <div id="ccCalip4" class="BankrateFCC_col1">Desired months until debt free:</div>');document.writeln('        <div class="BankrateFCC_col2">');document.writeln('          <input type="text" class="BankrateFCC_sel-options" id="DesiredMonth" onclick = "return cccalSecond();" onfocus="cccalSecond();" value="">');document.writeln("          </div>");document.writeln('        <div class="BankrateFCC_colFull">');document.writeln('          <span id="errDesiredMonth" class="BankrateFCC_form-error"></span>');document.writeln("        </div>");document.writeln('        <div class="BankrateFCC_colFull">');document.writeln('          <span id="errccCalcommon" class="BankrateFCC_form-error"></span>');document.writeln("        </div>");document.writeln("");document.writeln('        <div id="cccalCalculate" class="BankrateFCC_button-small">');document.writeln("          <div>");document.writeln('            <a href="javascript:ValidateCardsCalControls()" id="Calculate_CreditCardPayOff">Calculate</a>');document.writeln("          </div>");document.writeln("        </div>");document.writeln('        <div id="ccCalresultDiv" style="display:none;" class="BankrateFCC_results-container">');document.writeln('          It will take you <input id="paymentCount" class="BankrateFCC_results-underline-input" value="">');document.writeln("            to pay off your credit card.");document.writeln("          </div>");document.writeln('        <div id="ccCalclearAll" style ="display:none" class="BankrateFCC_button-small">');document.writeln("          <div>");document.writeln('            <a href="javascript:ClearCardsControls()" >Clear all</a>');document.writeln("          </div>");document.writeln("        </div>");document.writeln("        <!-- Script Content End -->");document.writeln('        <div class="BankrateFCC_colFull">');document.writeln('          <span class="BankrateFCC_form-error" id ="ccCallblError" ></span>');document.writeln("        </div>");document.writeln("      </div>");document.writeln("");document.writeln('      <input type="hidden" id="selectedTextbox" />');document.writeln("</body>");document.writeln("</html>");document.writeln("");
