Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/01/2003, 08:35
Avatar de DanielRey
DanielRey
Usuario no validado
 
Fecha de Ingreso: enero-2001
Ubicación: Mendoza
Mensajes: 630
Antigüedad: 23 años, 3 meses
Puntos: 1
HolaS GustavoS

Probá este código:

<html>
<head>
<script language="JavaScript">
function AbreVentana(cual) {
switch (cual) {
case 1:
ventana = "ver.html"
break
case 2:
ventana = "hor.html"
break
case 3:
ventana = "izq1.html"
break
default :
ventana = "izq2.html"
break
}
window.open(ventana, "_blank", " toolbar=no,menubar=no,directories=no,width=550,hei ght=280,top=20,left=180,status=no,resizable=yes,lo cation=no,scrollbars=yes")
}
</script>
</head>
<body>
<a href="javascript:AbreVentana(1)">stecko.htm</a>
<a href="javascript:AbreVentana(2)">steck.htm</a>
<a href="javascript:AbreVentana(3)">stec.htm</a>
<a href="javascript:AbreVentana(4)">ste.htm</a>
</body>
</html>


Suerte