/* To change the Text under Payment Method */
if(document.getElementById("section-cart")!=null)
{	
	var browser=navigator.appName;
		if(browser=="Netscape")
		{    
		var str=document.getElementById("section-cart").innerHTML;
		str=str.replace('class="hint"','class="hint1"');
		str=str.replace('(For credit cards, the security code can be ','');
		str=str.replace('found on the back of your card.','');    
		str=str.replace('This code is the last three ','');
		str=str.replace('digits above your signature)','(For Visa, Mastercard, and Discover, the security code can be found on the back of your card. This code is the last three digits above your signature. For American Express, the security code can be found on the front of your card. It is the four digits above your card number)');       
		document.getElementById("section-cart").innerHTML="";    
		document.getElementById("section-cart").innerHTML=str;     
		//var string1=document.getElementById("section-cart").innerHTML.substring(0,document.getElementById("section-cart").innerHTML.indexOf('hint">')+6);  
		//var string2=document.getElementById("section-cart").innerHTML.substring(document.getElementById("section-cart").innerHTML.lastIndexOf('(For Visa,'));      
		//document.getElementById("section-cart").innerHTML=string1 + string2;
		
		}
		else
		{
		var str=document.getElementById("section-cart").innerHTML;    
		str=str.replace('hint','hint1');
		str=str.replace('(For credit cards, the security code can be found on the back of your card.<BR>This code is the last three digits above your signature)','(For Visa, Mastercard, and Discover, the security code can be found on the back of your card. This code is the last three digits above your signature. For American Express, the security code can be found on the front of your card. It is the four digits above your card number)');
		document.getElementById("section-cart").innerHTML="";
		document.getElementById("section-cart").innerHTML=str;
		}
	
}