function showTip(e,temptx){
//alert(e.clientX+" "+e.clientY);
if(document.all&&(document.readyState=="complete"||document.readyState=="interactive")){
document.getElementById("flowarea").innerHTML='
|
document.all.flowarea.style.pixelLeft=e.clientX+document.body.scrollLeft+10;
document.all.flowarea.style.pixelTop=e.clientY+document.body.scrollTop+10;
document.all.flowarea.style.visibility="visible";
}else if(document.readyState=="complete"||document.readyState=="interactive"){
document.getElementById("flowarea").innerHTML='
|
document.getElementById("flowarea").style.left=e.clientX+document.documentElement.scrollLeft+100+'px';
document.getElementById("flowarea").style.top=e.clientY+document.documentElement.scrollTop+100+'px';
document.getElementById("flowarea").style.visibility="visible";
alert(document.getElementById("flowarea").style.left+" + "+document.getElementById("flowarea").style.top);
}else if(document.layers){
document.flowarea.document.nstip.document.write(''+'
document.flowarea.document.nstip.document.close();
document.flowarea.document.nstip.left=0;
//currentscroll=setInterval("pub_help_scrolltip()",100);
document.flowarea.left=e.pageX+100;
document.flowarea.top=e.pageY+100;
document.flowarea.visibility="show";
}
}
function pub_help_scrolltip(){
if(document.flowarea.document.nstip.left>=-document.flowarea.document.nstip.document.width)
document.flowarea.document.nstip.left=5;
else
document.flowarea.document.nstip.left=150;
}
function closeTip(){
document.getElementById("flowarea").style.visibility="hidden";
}
11 | 12 |
21 | 22 |
31 | 32 |