function fiexNodeText(PN)
{
	if(PN==null)
		return;
	if(PN.nodeType==3)//textNode
	{
		ReplaceText(PN)
		return;
	}
	var n=PN.firstChild;
	
	var ReplaceText=function(txtNode)
	{
	      if(txtNode!=null)
		{
			var p=txtNode.parentNode;
			var span=document.createElement("span");
			var re = new RegExp("安全监管经验");var target = re.exec(txtNode.nodeValue);span.innerHTML=txtNode.nodeValue.replace(/安全监管经验/g,"<a target=_blank class=test_link_class href='http://www.cworksafety.com/101806/101961/103288/list.html' >"+target+"</a>");
			p.insertBefore(span,txtNode);
			txtNode.nodeValue="";
		}
	
	};
	while(n!=null)
	{
		if(n.nodeType==3)//TextNode
		{
			ReplaceText(n);
		}
		else
			fiexNodeText(n);
		n=n.nextSibling;
	}
	
}

window.onload=function()
{
     fiexNodeText(document.getElementById('zoom'));
}