﻿// JScript File

 function imageButton_OnMouseEnter(which)
    {
        which.src = which.src.replace(".gif","_ovr.html");
    }

    function imageButton_OnMouseOut(which)
    {
        which.src = which.src.replace("_ovr.html",".gif");
    }
