// keep the next line as it is. need it to benefit from InterDev colors, but must comment it out.
// <SCRIPT LANGUAGE="JScript">

<!-- Hide from old browsers
//======================== show cvc credit card images ============

$(document).ready(function(){
	$('#amex_CVC').hide();
	$('#visa_CVC').hide();
	
	$('input[name=pmt_Number]').keyup(function()
	{
		if ($('input[name=pmt_Number]').val().charAt(0)=="3")
		{
			$('#amex_CVC').show();
			$('#visa_CVC').hide();
		}
		else
		{
			$('#visa_CVC').show();
			$('#amex_CVC').hide();

		}
	});
});

//====================== Message Text Character Counter ========

var cc = 0;
var submittedFlag = false;
function count(strText, strCount, intMaxLen) {
   if(strText.value.length > intMaxLen) {
     strText.value = strText.value.substring(0,intMaxLen);
     cc++;
     if(cc > 0) {
       document.getElementById(strCount).innerHTML = "None!";
       cc = 0;
       return;
       }
     }
     document.getElementById(strCount).innerHTML = intMaxLen - strText.value.length;
	 return (intMaxLen - strText.value.length);     
}



