﻿/*******************************************
	网站内联关键字
	本文件由程序自动生成，请勿手动修改
	Power By LiShilin@Gmail.com. Create:2009-06-12 17:33:22
*******************************************/

var arryKeywordList=[
["开业","http://www.new-feel.com.cn"],
["招商","http://www.new-feel.com.cn/Join/"],
["饰品","http://www.new-feel.com.cn/Join/JoinApply.aspx"],
["域森集团","http://www.new-feel.com.cn"],
["域森企业","http://www.new-feel.com.cn"],
["加盟","http://www.new-feel.com.cn/Join/JoinApply.aspx"],
["新感觉","http://www.new-feel.com.cn"],
];

function ReplaceKey(contentID)
{
	var obj,objHTML,reg,txtrep,txtlink;
	obj=document.getElementById(contentID);
	objHTML=obj.innerHTML;
	for(var iRow=0;iRow<arryKeywordList.length;iRow++)
	{
		if(arryKeywordList[iRow])
		{
			txtlink=arryKeywordList[iRow][1];
			reg=arryKeywordList[iRow][0];
			if(objHTML.indexOf(reg)>-1)
			{
				txtrep = '<a href="' + txtlink + '" target="_blank" title="点击查看关于' + reg + '的相关内容"><font color="blue" style="font-size:14px;">' + reg + '</font></a>';
				objHTML=objHTML.replace(reg,txtrep);
			}
		}
	}
	obj.innerHTML=objHTML;
}

