function carregaGenero(pag){
	if(pag){
	  url = '../receitas/index_cat_' + pag + '.html';
	  location.href = url;
	}
}

function mandaBusca(){
	palavra = document.getElementById("palavra").value;
	if(palavra.length>2){
		location.href = "../busca/index.php?palavra=" + palavra;
	} else {
		alert("A palavra deve conter pelo menos 3 caracteres!");
		document.getElementById("palavra").focus();
	}
}

function ampliaFoto(img){
	url = '../receitas/amplia.php?img=' + img;
	pop_amplia = window.open(url,'amplia','width=350,height=242,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,left=50,top=20');
}

function enviaAmigo(rec, tit){
	url = '../receitas/envia.php?rec=' + rec + '&tit=' + tit;
	pop_envia = window.open(url,'envia','width=350,height=359,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,left=50,top=20');
}

function abrePrint(rec){
	url = '../receitas/pag_rec_' + rec + '_print.html';
	pop_print = window.open(url,'print','width=587,height=500,scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=no,left=50,top=20');
}
