﻿// JScript 文件
var Show_MouseTag_event_x=0;
	var Show_MouseTag_event_y=0;
	function Show_MouseTag(e,str)
	{
		if (e==null) e=event;
		if ($("MouseTagDiv"))
		{
			$("MouseTagDiv").innerHTML="点击查看<span style=\"color:#FF0000;\">"+str+"</span>的公司";
			Show_MouseTag_event_x=e.x?e.x:e.pageX;
			Show_MouseTag_event_y=e.y?e.y:e.pageY;
			$("MouseTagDiv").style.left=(Show_MouseTag_event_x+5+parseInt(document.documentElement.scrollLeft))+"px";
			$("MouseTagDiv").style.top=(Show_MouseTag_event_y+5+parseInt(document.documentElement.scrollTop))+"px";
		}
		else
		{
			Show_MouseTag_event_x=e.x?e.x:e.pageX;
			Show_MouseTag_event_y=e.y?e.y:e.pageY;
			var newdiv=document.createElement("div");
			newdiv.id="MouseTagDiv";
			newdiv.style.position="absolute";
			newdiv.style.zIndex="999";
			newdiv.style.border="solid 1px #666666";
			newdiv.style.left=(Show_MouseTag_event_x+5+parseInt(document.documentElement.scrollLeft))+"px";
			newdiv.style.top=(Show_MouseTag_event_y+5+parseInt(document.documentElement.scrollTop))+"px";
			newdiv.style.width="150px";
			newdiv.style.height="20px";
			newdiv.style.lineHeight="20px";
			newdiv.style.textAlign="center";
			newdiv.style.overflow="visible";
			newdiv.style.backgroundColor="#FFFFFF";
			newdiv.innerHTML="点击查看<span style=\"color:#FF0000;\">"+str+"</span>的公司";
			document.body.appendChild(newdiv);
		}
	}
	function Hide_MouseTag()
	{
		if ($("MouseTagDiv")) document.body.removeChild($("MouseTagDiv"));
	}

