function gallery(str) { searchWin = window.open(str,'gallery','scrollbars=yes,resizable=no,top=' + (((screen.height-350)/2)-20) + ',left=' + ((screen.width-650)/2) +',width=650,height=350,status=no,location=no,toolbar=no'); } function checkLoginForm(form) { if(form.username.value.length == 0) { alert("Attenzione: inserisci il tuo username!"); form.username.focus(); return false; } if(form.password.value.length == 0) { alert("Attenzione: inserisci la tua password!"); form.password.focus(); return false; } return true; }