tengo un fichero index.html, otro flash.html y otro pop.html.
El fichero index.html en su evento onLoad llama a un javascript que abre con un open.window el fichero flash.html sin barras ni menues, pero quiero que el fichero pop.html se abre encima de flash.html, tambien sin barras ni menues.
He intentado poniendo dos open.window uno bajo el otro, pero solo me funciona uno, he probado poniendo un onLoad en flash.html, pero no me trabaja... que hago????
Aquí fragmento de los códigos:
index.html
Código:
flash.html<html> <head> <title> <<< SUNVAK TOURS >>> </title> <meta http-equiv="expires" content="0"> <meta http-equiv="Pragma" content="no-cache"> <script language="JavaScript"> function win_full () { ... aqui determino el explorador y calculo tamaño ... window.open("flash.html", "Main", "width=800, height=600, top=0, left=0, scrollbars=no"); } </script> </head> <body onLoad="win_full()"> <table width="100%" height = "100%" border="0"> <tr><td align = center valign = middle> <a href="javascript:win_full()">ReLaunch</a> </td></tr> </table> </body> </html>
Código:
pop.html<html> <head> <title> <<< SUNVAK TOURS >>> </title> </head> <body> <table width="100%" height = "100%" border="0"> <tr><td align = center valign = middle> ... aquí cargo la animación flash ... </td></tr> </table> </body> </html>
Código:
Qué hago? qué código puedo usar y dónde lo pongo para que esta ventanita pequeña se me abra sobre la segunda...<html> <head> <title> SUPER SPECIALS!! </title> </head> <body> TEXTO DE PRUEBA PARA VER SI ABRE LA VENTANA </body> </html>
Saludos y gracias,
Silver