Somebody please, when my mouse is over the image, the help screen comes up, but parts of it is "behind" the selection menu. Ho can I get it to the forefront?
<table>
<tr>
<td><img src="yellow.jpg"
onmouseover="yi3.style.visibility='visible'"
onmouseout="yi3.style.visibility='hidden'">
<div id="yi3">
This a help screen!
</div>
</td>
<td>
<fieldset><legend>Enter TYPE</legend>
<select name="amt_type">
<option value="b">Balance</option>
<option value="d" selected>Deduction</option>
<option value="o">Other</option>
</select>
</fieldset>
</td>
</tr>
</table>
almost forgot, here is yi3:
#yi3 {position:absolute; width:300px; left:150px; font-size:8pt;
font-family:Arial; border-style:solid; z-index:20;
visibility:hidden; background-color:#ffff99; color:black;
padding:8px; border-width:1px; border-top-width:6px}