function submitVoto150(theForm) { windowName = "PopupVoto150"; windowURL = theForm.action; if (ValidaEnquete150(theForm) == false) { alert('Cada pergunta deve receber ao menos um voto!'); return false; } windowURL = windowURL + '&per_150=' + getRadio150(theForm.per_150); windowURL = windowURL + '&urlredirect='; myWindow = window.open(windowURL, windowName, 'scrollbars=1,resizable=1,width=450,height=500'); myWindow.focus(); return false; } function getRadio150(radio) { ischecked = -1; for (var i = 0; i < radio.length; i++) { if (radio[i].checked) { ischecked = i; break; } } if (ischecked == -1) { return ''; } else { return radio[i].value; } } function ValidaEnquete150(theForm) { if (getRadio150(theForm.per_150) == '') { return false; } return true; } document.write("