	var redirectList = new Array();
	redirectList.push("lyricaawareness.com");
	redirectList.push("lyricapro.com");
	redirectList.push("nepinformation.com");
	redirectList.push("lyricapatient.com");
	redirectList.push("lyricacommunications.com");
	
	var strUrl = String(document.location);
	
	// Add www if we are not in test environments 
	if (strUrl.indexOf(".com") > 0 && strUrl.indexOf(".pfizer.com") == -1 && strUrl.indexOf("://www.") == -1) strUrl = strUrl.replace("://","://www.");
	
	if (strUrl.indexOf("/brands") > 0) {
	        strUrl = strUrl.replace("/brands", "/sites/ppro/pages/products");
	}
	else
	{
	        for (var i = 0; i < redirectList.length; i++)
	        {
	                if (strUrl.indexOf(redirectList[i]) > 0)
	                {
	                        strUrl = "https://www.pfizerpro.com/sites/ppro/pages/products/lyrica.aspx";
	                        //alert(strUrl);
	                        break;
	                }
	        }
	}
	
	if (strUrl.toLowerCase().substr(0,5)=="http:")
	{
	        strUrl = "https:" + strUrl.substr(5, strUrl.length-1);
	}
	
	// If we changed the URL at all, then redirect to the new URL
	if (strUrl != String(document.location)) document.location = strUrl;
