Hola
AnDrEa MM
Lo más sencillo es hacerlo con Css.
Pon el enlace tal cual: <a href="tupagina.html">Enlace</a>
y en el head de tu página:
Código:
<style type="text/css">
a:hover {font-weight:bold}
</style>
Si quieres usar el evento
onmouseover quedaría así:
Código:
<a href="tupagina.html" onmouseover = "this.style.fontWeight='bold'" onmouseout = "this.style.fontWeight=''">Enlace</a>
Pero, repito, es más sencillo de la primera forma.
Saludos,