hai un form con name="myForm"?
l' ultimo + '' non serve
e manca il secondo parametro obbligatorio del window.open
<input type="button" class="btn" onclick="window.open('soci_preview.php?Email=' + myForm.Email.value + '&Password=' + myForm.Password.value + '&Nome=' + myForm.Nome.value + '&Nickname=' + myForm.Nickname.value + '&Continente=' + document.myForm.Continente.options[document.myForm.Continente.selectedIndex].text, 'finestra')" value="Anteprima" />
x rendere le cose + semplici puoi appoggiarti ad una variabile
codice:
<input type="button" class="btn" onclick="var f=document.myForm;window.open('soci_preview.php?Email=' + f.Email.value + '&Password=' + f.Password.value + '&Nome=' + f.Nome.value + '&Nickname=' + f.Nickname.value + '&Continente=' + f.Continente.options[f.Continente.selectedIndex].text, 'finestra')" value="Anteprima" />
se il button fa parte di myForm puo' diventare anche cosi'
codice:
<input type="button" class="btn" onclick="var f=this.form;window.open('soci_preview.php?Email=' + f.Email.value + '&Password=' + f.Password.value + '&Nome=' + f.Nome.value + '&Nickname=' + f.Nickname.value + '&Continente=' + f.Continente.options[f.Continente.selectedIndex].text, 'finestra')" value="Anteprima" />
ciao