﻿/*******************************************
	网站内联关键字
	本文件由程序自动生成，请勿手动修改
	Power By LiShilin@Gmail.com. Create:2008-12-17 09:54:10
*******************************************/

var arryKeywordList=[
["双模","http://www.sevl88.com/Product/index.aspx"],
["电热水器","http://www.sevl88.com/Product/index.aspx"],
];

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">' + reg + '</font></a>';
				objHTML=objHTML.replace(reg,txtrep);
			}
		}
	}
	obj.innerHTML=objHTML;
}

