function loadProduto(id) {
	new Ajax.Request(strPath + 'includes/produto.php?pId=' + id, {
		method: 'get',
		onLoading: function() {
			$('corpo_conteudo').innerHTML = '<div id="ajax_centro"><p align="center"><img src="imagens/pl.gif" alt="Carregando. Aguarde." /><br />Carregando produto...</p></div>';
		},
		onComplete: function(transport) {
			$('corpo_conteudo').innerHTML = transport.responseText;
		},
		onFailure: function() {
			$('corpo_conteudo').innerHTML = '<div id="ajax_centro_erro"><p align="center">Ocorreu um erro, tente novamente</p></div>';
		}
	});
}

function loadFamilia (id) {
	new Ajax.Request(strPath + 'includes/listaprodutosfamilia.php?fId=' + id, {
		method: 'get',
		onLoading: function() {
			$('corpo_conteudo').innerHTML = '<div id="ajax_centro"><p align="center"><img src="imagens/pl.gif" alt="Carregando. Aguarde." /><br />Carregando produto...</p></div>';
		},
		onComplete: function(transport) {
			$('corpo_conteudo').innerHTML = transport.responseText;
		},
		onFailure: function() {
			$('corpo_conteudo').innerHTML = '<div id="ajax_centro_erro"><p align="center">Ocorreu um erro, tente novamente</p></div>';
		}
	});	
}