Forum Moderators: open
<script type="text/javascript">
function HideShow(myVar, mySecondVar)
{
if (document.getElementById(myVar).style.display == 'none')
{
document.getElementById(myVar).style.display = 'inline'
-----> mySecondVar.src = "css/images/show.gif"
}
else
{
document.getElementById(myVar).style.display = 'none'
-----> mySecondVar.src = "css/images/hide.gif"
}
}
</script>
I would greatly appreciate any help!