// JavaScript Document
    function ExibeMensagem (){
		
		   if(document.getElementById('email').value == ""){
			   
			     document.getElementById('email').value = "Digite o e-mail do seu amigo";
			   
			   }
		
		}
		
	function TiraMensagem(){
		
		  if(document.getElementById('email').value != ""){
			   
			     document.getElementById('email').value = "";
			   
			   }
		
		
		}	
    
	 function Cont(){
		 
		    var quant = document.getElementById('comente').value.length;
		    document.getElementById('cont').innerHTML = 128 - quant;
		 
		 }
		 
    function PopEnquete(){
		 
		   window.open('resultado-enquete.php','Resultado','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=400');
		 
		 }	
		 
	 function ValidaEnquete(){
		 
		    if(document.form1.r1.checked == false &&
			   document.form1.r2.checked == false &&
			   document.form1.r3.checked == false &&
			   document.form1.r4.checked == false &&
			   document.form1.r5.checked == false
			   ){
				
				  alert("Você precisa selecionar uma resposta para continuar");
				  return false;
				
				}else{
					  
					   PopEnquete();
					
					}
		 
		 }	 
		 

