function ShowHelp(id) {
document.getElementById(id).style.display = "block";
}
function HideHelp(id) {
document.getElementById(id).style.display = "none";
}
on .aspx page
onmouseover="javascript:ShowHelp('dvthumimage');" onmouseout="javascript:HideHelp('dvthumimage');"
No comments:
Post a Comment