asked on
function show(temp)
{
document.getElementById(temp).style.display="inline-block";
}
function hide(temp)
{
document.getElementById(temp).style.display="none";
}
<div class='divclass'><b>
<img src="Images/button" id='test' onmouseover="show('divname');" onmouseout="hide('divname');">
</td><td>
<div id="display" style="border:0;display:none;position:absolute;">
<iframe src="details.php?tmp1=xxx&tmp2=yyy&tmp3=aaa&tmp4=bbb"></iframe>
</div>
</div>