<SCRIPT LANGUAGE="JavaScript">
<!--
function disp_div(div_name,xmouse,ymouse)
{
 help_divwid = parseInt(document.getElementById(div_name).style.width,10);
 if(document.body.clientWidth > (help_divwid+xmouse+15))
 {
  document.getElementById(div_name).style.left = document.body.scrollLeft + xmouse + 10;
  document.getElementById(div_name).style.top = document.body.scrollTop + ymouse;
 }else{
  document.getElementById(div_name).style.left = (document.body.scrollLeft + xmouse) - (help_divwid+10);
  document.getElementById(div_name).style.top = document.body.scrollTop + ymouse;
 }
 document.getElementById(div_name).style.visibility = "visible";
}
function hide_div(div_name)
{
 document.getElementById(div_name).style.visibility = "hidden";
}
//-->
</SCRIPT>
 
<a href="" onMouseOver="disp_div('divHelp_playshopping',event.clientX,event.clientY);" onMouseOut="hide_div('divHelp_playshopping')">도움말</a>

<div id="divHelp_playshopping" style="position:absolute;left:0px;top:0px;width:350px;height:200;z-index:200;visibility:hidden;">
<table border="1" cellpadding="0" cellspacing="0" width="100%">
 <tr valign="top">
  <td>이건 메세지 나타나는거</td>
 </tr>
</table>
</div>