<Script Language="JavaScript">
ImageRatio = 100;
function ImageMouseOver(Img)
{
Img.width += ImageRatio;
Img.height += ImageRatio;
}
function ImageMouseOut(Img)
{
Img.width -= ImageRatio;
Img.height -= ImageRatio;
}
</Script>
<img border="0" src="download.gif" width="29" height="32" OnMouseOver="ImageMouseOver(this);" OnMouseOut="ImageMouseOut(this);">