<!-- da inserire senza alcuna modifica nei tag head della
pagina html --> <script language="JavaScript" type="text/JavaScript"> <!-- function apriPopupCentrata(nome, titolo, lar, alt, feat){ var wdt = screen.width; var hgt = screen.height; var x = Math.round( (wdt / 2) - (lar / 2) ); var y = Math.round( (hgt / 2) - (alt / 2) ); window.open(nome, titolo, 'width=' + lar + ',height=' + alt + ',left=' + x + ',screenX=' + x + ',top=' + y + ',screenY=' + y + ',' + feat); } //--> </script> /* da inserire con le oppurtune modifiche nel pulsante in flash */ on (release) { getURL("javascript:apriPopupCentrata('test.html', 'HTML', 400, 300, 'status=yes, toolbar=yes')"); } |