﻿//弹出黄色提示
function tips(id,str){
var obj=document.getElementById(id);
var x=getAbsoluteLeft(obj);
var y=getAbsoluteTop(obj);
var popObj=document.getElementById("tips");
popObj.innerHTML="<div id='tip_base'><div id='tip_top'>"+str+"</div><div id='tip_bottom1'><img src='/person/Reg/img/tip_bottom.gif' /></div><div id='tip_bottom2'></div></div>";
popObj.style.display="inline";
var menu_h=popObj.offsetHeight;
y=y-menu_h;
popObj.style.left=x+"px";
popObj.style.top=y+"px";

var browser=navigator.userAgent; 
if (browser.indexOf("Firefox")>0)
{   //alert('ff');
    if(document.getElementById("tips")!=null)
    {$('tip_bottom2').style.cssFloat="none";}
}
//if (browser.indexOf("MSIE")>0)
//{   //alert('ie');
//    if(document.getElementById("tips")!=null)
//    {$('tip_bottom2').style.styleFloat="left";}
//}
//var wid=parseInt($('tip_top').offsetWidth)-16+"px";
//$('tip_bottom2').style.width=wid;

}
//关闭
function tipsClose(){
	var popObj=document.getElementById("tips");
	popObj.innerHTML="";
	
}


