|
|
|
<HTML> <HEAD> <TITLE></TITLE> <STYLE TYPE="text/css"> <!-- .menu {font-family:Arial; font-weight:bold}
.menu a{ text-decoration:none; color:black; } --> </STYLE> <SCRIPT LANGUAGE="javascript"> <!--
/* Cool Table Menu By Clarence Eldefors (http://www.freebox.com/cereweb) with modifications from javascriptkit.com Visit http://javascriptkit.com for this and over 400+ other scripts */
function movein(which,html){ which.style.background=`coral` if (document.getElementById) document.getElementById("boxdescription").innerHTML=html else boxdescription.innerHTML=html }
function moveout(which){ which.style.background=`bisque` if (document.getElementById) document.getElementById("boxdescription").innerHTML=` ` else boxdescription.innerHTML=` ` }
//--> </SCRIPT> </HEAD> <BODY> <TABLE BGCOLOR="black" BORDER="1" BORDERCOLOR="ivory" CELLPADDING="2" CELLSPACING="0"> <TR> <TD CLASS="menu" BORDERCOLOR="black" ID="choice1" STYLE="background-color:bisque; cursor:hand" ONMOUSEOVER="movein(this,`Coleccion de Javascript`)" ONMOUSEOUT="moveout(this)"> <A HREF="http://www.mundojavascript.com" TARGET="_blank">Mundo JavaScript</A></TD> </TR> <TR> <TD CLASS="menu" BORDERCOLOR="black" ID="choice2" STYLE="background-color:bisque; cursor:hand" ONMOUSEOVER="movein(this,`Recursos para webmasters.`)" ONMOUSEOUT="moveout(this)"> <A HREF="http://www.xlwebmasters.com" TARGET="_new">Xlwebmasters</A></TD> </TR> <TR> <TD CLASS="menu" BORDERCOLOR="black" ID="choice3" STYLE="background-color:bisque; cursor:hand" ONMOUSEOVER="movein(this,`Recursos para webmasters`)" ONMOUSEOUT="moveout(this)"><A HREF="http://www.iaupa.com" TARGET="_new">iaupa.com</A></TD> </TR> <TR> <TD CLASS="menu" BORDERCOLOR="black" ID="choice4" STYLE="background-color:bisque; cursor:hand" ONMOUSEOVER="movein(this,`Arquería técnica`)" ONMOUSEOUT="moveout(this)"><A HREF="http://www.aventurarc.com" TARGET="_new">Aventurarc</A></TD> </TR> <TR> <TD BORDERCOLOR="black" BGCOLOR="ivory" HEIGHT="18"><FONT ID="boxdescription" FACE="Verdana" SIZE="0"></FONT></TD> </TR> </TABLE> </BODY> </HTML>
|
|