correggo PAGINA BASE
Con Frontpage non so come fare, ma il codice è semplice:
PAGINA BASE:
POP-UP1 (pop1.htm):codice:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento senza titolo</title> </head> <script type="text/javascript"> function apri1(){ window.open('pop1.htm','1','width=300,height=188,scrollbars=no,left=50,top=50');} function apri2(){ window.open('pop2.htm','1','width=300,height=188,scrollbars=no,left=50,top=50');} </script> <body onload="apri1()"> Finestra Principale link1 </body> </html>
POP-UP2 (pop2.htm)codice:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>POPUP1</title> </head> <body> pop1 </body> </html>
codice:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>POPUP2</title> </head> <body> pop2 </body> </html>

Rispondi quotando