var sURL = document.location.href;
if(document.getElementById("section-cart")!=null) 
{ 
   var str=document.getElementById("section-cart").innerHTML;
   str=str.replace("Total:","Total");
   str=str.replace("Order Sub Total:","Order Sub Total");
    str=str.replace("Order Tax:","Order Tax");
	str=str.replace("Handling:","Handling");
	str=str.replace("Order Total:","Order Total");
	str=str.replace("Card:","Card");
	str=str.replace("Code:","Code");	
	if(sURL.indexOf("section=Cart") > 0 && sURL.indexOf("Step=5") < 0)
	{
	str=str.replace("Name:","Name");	
	}
	str=str.replace("Email:","Email");
	str=str.replace("Phone:","Phone");
	str=str.replace("Fax:","Fax");
	str=str.replace("Company:","Company");
	str=str.replace("Address1:","Address1");
	str=str.replace("Address2:","Address2");
	str=str.replace("City:","City");
	str=str.replace("State:","State");
	str=str.replace("Zip:","Zip");
	str=str.replace("Country:","Country");
   document.getElementById("section-cart").innerHTML=str; 
}




if(sURL.indexOf("section=Cart") > 0 && sURL.indexOf("Step=5") > 0)
{
	var str=document.getElementById("section-cart").innerHTML;
	str=str.replace("Name:","Name (optional)");	
	str=str.replace("Type:","Type");
	str=str.replace("Type:","Type");						
	str=str.replace("Name:","Name");	
	str=str.replace("Number:","Number");
	str=str.replace("Expires:","Expires");
	str=str.replace("Address:","Address");
	str=str.replace("Address:","Address");
	document.getElementById("section-cart").innerHTML=str; 

}

