allora...
non si fa così :P
quello è un form con un submit... in quel caso i link <a></a> non c'entrano assolutamente nulla...
dovresti fare così:
Codice HTML:
<form name="form1" ONSUBMIT="openTarget(this, 'width=300,height=300,resizable=1,scrollbars=1'); return true;" target="newpopup" target="finestrella" method="post" action="sondaggio/read.php">
e come javascript da mettere prima:
Codice HTML:
<SCRIPT>
function openTarget (form, features, windowName) {
if (!windowName)
windowName = 'formTarget' + (new Date().getTime());
form.target = windowName;
open ('', windowName, features);
}
</SCRIPT>
:grin: