function removeLiveChatMessage() {
  
	try {
  		var re = new RegExp("FREE chat by Volusion", "g");
  		var liveChatBody = document.getElementById("VolusionLiveChat").innerHTML;
  		
  		document.getElementById("VolusionLiveChat").innerHTML =  liveChatBody.replace(re, "");
  	}
  	catch(err)
 	{}
}
