	function Buscar(url){
		vForm=document.pesquisaReceita;
		
		if(vForm.valorBuscar.value!=""){
			if(url!=undefined)
				vForm.action=url;
			
			vForm.submit();	
		}		
	}

	function EnviarComents(){
		Vform=document.FormComentario;

		if(Vform.nome.value=="" || Vform.comentario.value=="" )
				alert("Os campos nome e comentários são obrigatorios");
		else
				Vform.submit();
	}