Using Javascript for links but no cursor

Hello everyone,

I have an image/link in a page like below:

<img src="design/penguins.jpg" alt="Penguins in Antarctica" width="150" height="113" onclick="MM_openBrWindow('http://www.worldwildlife.org/','','')" />

This is tied to a function below:

function MM_openBrWindow(theURL) {
  window.open(theURL);
}

This issue is, I don’t have a cursor. When you hover or mouse over the image, it does not show the cursor, the user has no way of knowing he’s hovering or scrolling over a link.

Is it possible to add a cursor to this link?

Thanks everyone!

IC

Thanks for your help! Looks simple but very educational!

IC

This is more of a CSS question, simply add

.img-link {
    cursor: pointer;
}

to your sites CSS file and make the image element

<img src="design/penguins.jpg" alt="Penguins in Antarctica" width="150" height="113" class="img-link" onclick="MM_openBrWindow('http://www.worldwildlife.org/','','')" />