	// JavaScript Document
	function Enquete(ACAO)
	{
		var width = 470;
		var height = 450;
									
		var left = ((screen.width - width)/2);
		var top = ((screen.height - height)/2);
					
		var URL = "popups/enquete.php?Acao="+ACAO;
					   
		var Janela = window.open(URL,'Enquete', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no, maximize=no');
				
		Janela.focus();
	}
	
	function Open(respostas)
	{
		var width = 470;
		var height = 450;
									
		var left = ((screen.width - width)/2);
		var top = ((screen.height - height)/2);
					
		var URL = "popups/enquete.php"+respostas+"||&acao=votar&Acao="+document.EnqueteForm.Acao.value+"&EID="+document.EnqueteForm.ENQ.value;
					   
		var Janela = window.open(URL,'Enquete', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no, maximize=no');
				
		Janela.focus();
	}
	
	function EmBreve(IDI)
	{
			if(IDI == 1)
			{
					var MSG = "Comming Son."
			}	
			else
			{
					var MSG = "En Construcíon.";
			}
			
			alert(MSG);
	}
