Uff tenias muchos errores de sintaxis, fijate si es lo que buscabas.
Código PHP:
function funcionhover() {
document.getElementById('enlace').style.textDecoration="underline";
}
function funcionhover2() {
document.getElementById('enlace').style.textDecoration="none";
}
<a id="enlace" href="pagina1.html" onmouseover="funcionhover()" onmouseout="funcionhover2()" style="text-decoration:none;">Mi enlace</a>