

function busca()
	{
		if (document.form_busca.busca.value == "")
			{
				alert("Campo não preenchido!!");
				document.form_busca.busca.focus();
			}
		else if (document.form_busca.busca.value.length < 3)
			{
				alert("Você precisa digitar pelo menos 3 caracteres!!");
				document.form_busca.busca.focus();
			}
		else
			{
				document.form_busca.submit();
			}
	}

function verificadata(x,y,z)
	{if (y == 1){
		a = (z/4)
		b = (z/100)
		c = (z/400)
		if ((Math.floor(a) == a && Math.floor(b) != b) || (Math.floor(a) == a && Math.floor(b) == b && Math.floor(c) == c))
			{if (x > 28){return false}}	
		else {if (x > 27){return false}}}
		else if ((y == 3) || (y == 5) || (y == 8) || (y == 10)){
			if (x == 30){return false}
			else{return true}}}
				
	
function contatosite()
	{
		var_contato = window.open('indique.asp','','left=70, top=40, width=231, height=310');
	}


function sendemail()
	{
		document.form_indique_site.submit();
	}

function closewindows()
	{window.close()}

function verificanum(event)
	{VarChar = event.which;
		if (VarChar == null){VarChar = event.keyCode}
		if (VarChar >= 48 && VarChar <= 57){return true}
		else{return false}}
		
