/**
 * @author 46785
 * modified the script file to avoid a conflict on IE. 
 * The new added code reads the browser name and excute the code accordingly
 * 
 */

	//new code added read the browser name
	var browserName=navigator.appName; 
	// if the browser is not IE
	//excute the code bellow, else false.
if (browserName!="Microsoft Internet Explorer") {

if (document.getElementById("CON_MainRegionContainer")) {
	var pageHTML = document.getElementById("CON_MainRegionContainer").innerHTML;
	var newHTML = pageHTML.replace(".cphosl.", "450:-").replace(".cpharn.", "460:-").replace(".cphhel.", "470:-");
	document.getElementById("CON_MainRegionContainer").innerHTML=newHTML;
}}

