ok, ya le hice unas modificaciones y acá te lo mando con onmouse over y onmouseout, pero aunque parezca raro, me está funcionando perfectamente en netscape, pero en IE no...y no entiendo porque...por favor que alguno de los entendidos en javascript nos resuelva ese problema...
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
function opacar(id,porcentaje){
if (document.all){
document.getElementById(id).style.filter = "alpha(opacity: porcentaje)";
}
else {
porcentaje = porcentaje/100;
document.getElementById(id).style.MozOpacity = porcentaje;
}
}
</script>
</head>
<body bgcolor="#ffffff" onLoad="opacar('celda',70)">
<table width="75%" border="0" background="gaita.jpg">
<tr>
<td rowspan="2" bgcolor="orange" id="celda" onMouseOver="opacar('celda',30)" onMouseOut="opacar('celda',70)"><p> </p>
<p> </p>
<p>klf jsjf slj ñlskfj ñlaj ñlakfjkñljf sl</p>
<p> </p>
<p> </p>
<p> </p></td>
<td bgcolor="orange"> </td>
</tr>
<tr>
<td bgcolor="orange">sfsdfdsfafsdfaffafsdf</td>
</tr>
</table>
</body>
</html>
Espero que te sirva. Saludos...