<html>
<body>
<script>
function showDiv(){
var msgDiv =document.getElementById("msgMenuDiv");
msgDiv.style.visibility = "visible";
}
function hiddenDiv(obj){
var msgDiv =document.getElementById("msgMenuDiv");
msgDiv.style.visibility = "hidden";
}
</script>
<table width="50%">
<tr>
<td>A</td>
<td>b</td>
<td>c</td>
<td>
<div style="position:relative; " name="divparent" >
<A href="#" onMouseOver="showDiv();">parent title</A>
<div style="height:200px; width:150px; position:absolute; margin-left:-95px; left: 97px; visibility: hidden; border: 1px none #000000; overflow: hidden;" id="msgMenuDiv" name="msgMenuDiv" onMouseOut="hiddenDiv(this);" onMouseOver="showDiv();">
<br/>
<a href="#" target="_top">link1</a><br/>
<a href="#" target="_top">link2</a><br/>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>
<body>
<script>
function showDiv(){
var msgDiv =document.getElementById("msgMenuDiv");
msgDiv.style.visibility = "visible";
}
function hiddenDiv(obj){
var msgDiv =document.getElementById("msgMenuDiv");
msgDiv.style.visibility = "hidden";
}
</script>
<table width="50%">
<tr>
<td>A</td>
<td>b</td>
<td>c</td>
<td>
<div style="position:relative; " name="divparent" >
<A href="#" onMouseOver="showDiv();">parent title</A>
<div style="height:200px; width:150px; position:absolute; margin-left:-95px; left: 97px; visibility: hidden; border: 1px none #000000; overflow: hidden;" id="msgMenuDiv" name="msgMenuDiv" onMouseOut="hiddenDiv(this);" onMouseOver="showDiv();">
<br/>
<a href="#" target="_top">link1</a><br/>
<a href="#" target="_top">link2</a><br/>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>