// VSAngela  
// vsangela es la autora de la idea 
// -----------------------------------------------------
// cambiar estilo en un área según cursor- simula enlace 
// <script language="Javascript" type="text/javascript">
// <!--
function mouseover(which){
which.style.backgroundColor='#00CCCC';
which.style.color='#ffffff';}

function mouseout(which){
which.style.backgroundColor='White';
which.style.color='#000000'}

function gothere(url){
parent.vsmain.location.href = url;}
// -->
// </script>

// <!--  .y en el cuerpo:
// <table><tr>
// <td style="background:#336699; color:#99CCFF; cursor:hand; border:1px solid #003366" onMouseOver="mouseover(this)" onMouseOut="mouseout(this)" onClick="gothere('../home.htm')" align="center">Home</td>
// <td style="background:#336699; color:#99CCFF; cursor:hand; border:1px solid #003366" onMouseOver="mouseover(this)" onMouseOut="mouseout(this)" onClick="gothere('../albums.htm')" align="center">Albums</td>
// </tr></table>
// -->
// <!-- FIN probando -->
