	function FechaIndique(){
		parent.document.getElementById('form_indique').className = 'envie hidden';
		parent.document.getElementById('form_indique').removeChild(parent.document.getElementById('frIndique'));
	}

	function ExibirIndique(){
		var ni = $('form_indique');
		if ($('frIndique')==null){
			var newdiv = document.createElement('iframe');
				newdiv.setAttribute("id","frIndique");
				newdiv.setAttribute("name","frIndique");
				newdiv.setAttribute("width","415px");
				newdiv.setAttribute("height","460px");
				newdiv.setAttribute("frameBorder","0");
				ni.appendChild(newdiv);
		}
		$('frIndique').src = "indique.aspx";
		$('form_indique').className = "envie show";
		window.scrollTo(0,0);
	}
	
	function enviarIndique(){
		tiraDiv('bt_enviar');
		exibeDiv('bt_enviar_progress');
		if ($('nome_de').value==""){
			alert("Atenção, digite seu nome.");
			tiraDiv('bt_enviar_progress');
			exibeDiv('bt_enviar');
			return false;
		}
		if (!valida_email($('email_de'))){
			alert("Atenção, digite seu e-mail.");
			tiraDiv('bt_enviar_progress');
			exibeDiv('bt_enviar');
			return false;
		}
		if ($('nome_para').value==""){
			alert("Atenção, digite o nome de seu amigo.");
			tiraDiv('bt_enviar_progress');
			exibeDiv('bt_enviar');
			return false;
		}
		if (!valida_email($('email_para'))){
			alert("Atenção, digite o e-mail de seu amigo.");
			tiraDiv('bt_enviar_progress');
			exibeDiv('bt_enviar');
			return false;
		}
		if ($('comentario').value==""){
			alert("Atenção, digite um comentário.");
			tiraDiv('bt_enviar_progress');
			exibeDiv('bt_enviar');
			return false;
		}
		
		if (!CaptchImg())
		{
		    tiraDiv('bt_enviar_progress');
			exibeDiv('bt_enviar');
		    return false;
		}

		indique.EnviaIndique($('nome_de').value,$('email_de').value, $('nome_para').value, $('email_para').value, $('comentario').value, retorno_enviarIndique);
	}
	
	function retorno_enviarIndique(ret){
		var ok = ret.value;
		if (ok=="true" || ok==true){
			tiraDiv('tb_formulario');
			tiraDiv('tb_erro');
			exibeDiv('tb_sucesso');
		}else{
			tiraDiv('bt_enviar_progress');
			tiraDiv('tb_formulario');
			exibeDiv('bt_enviar');
			exibeDiv('tb_erro');
		}
	}
	
	function stripHTML(textFull) 
	{
      if(textFull != null &&  textFull != ''){
              textFull = textFull.replace(/[ºª¦£]/g, '');
              textFull = textFull.replace(/[;<>()+÷|¦&$!?*¬ªº°_/\\%@#=`¨´''~^{}]/g, '');
              textFull = textFull.replace(/\]|\[|-|"/g, '');
            } 
            
             document.getElementById("comentario").value = textFull; 
    }
	
	function CaptchImg()
	{
	    if(document.getElementById("valorInformado").value == '')
	    {
	        alert('Digite o código de validação.');
	        document.getElementById("valorInformado").focus();
	    }
	    else
	    {
	        if(indique.CaptchImg(document.getElementById("valorInformado").value).value)
	        {
	            return true
	        }
	        else
	        {
	            alert('Código inválido.');
	            document.getElementById("valorInformado").value = '';
	            document.getElementById("valorInformado").focus();
	        }   
	    }
	    return false;
	}