function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+''
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus();
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function radio_aovivo(){
	var width = 350;
	var height = 223;
	var left = 175;
	var top = 218;
	URL = "radio-ao-vivo.php";
window.open(URL,'win', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}

function vota(){
	//veficia qual radio está chegado e pega o valor
	radio = document.getElementsByName("Fvalor");
	captcha = document.getElementById("captcha").value;
    for(var i=0;i<radio.length;i++) {
        if(radio[i].checked) {
            v1 = radio[i].value;
        }
    }
	//pega o valor da enquete
	v2 = document.getElementById("Fenquete").value;	
   	window_top = (screen.height-200)/2;
   	window_left = (screen.width-400)/2;
window.open('enquete_insere_votos.php?Fenquete=' + v2 + '&Fvalor=' +  v1 + '&Captcha=' + captcha + '','janela','scrollbars=no,location=no,width=400, height=200, top=' + window_top + ', left=' + window_left + '');
return (false);
}

