Hola
Darksoft
Prueba este código:
Código PHP:
<html>
<head>
<script type="text/javascript">
var tmp;
function mostrar() {
document.getElementById('pepe').style.display = 'block';
}
function anular() {
clearTimeout(tmp);
document.getElementById('pepe').style.display = 'none';
}
</script>
</head>
<body>
<table>
<tr>
<td onmouseover="tmp=setTimeout('mostrar()',1000)" onmouseout="anular()">Fecha</td>
</tr>
</table>
<div id="pepe" style="display:none">Hola</div>
</body>
</html>
Saludos,