/*******************************************
	网站内联关键字
	本文件由系统自动生成
	日期:2009-03-06 09:45:14
*******************************************/
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(new RegExp(reg,"ig"),txtrep);
			}
		}
	}
	obj.innerHTML=objHTML;
}
var arryKeywordList=[
["usb flash drives","http://www.hantat.com"],
];
ReplaceKey("content");
