function inicia() {
	var req;
	try { req = new ActiveXObject("Microsoft.XMLHTTP"); }
	catch(e) {
 		try { req = new ActiveXObject("Msxml2.XMLHTTP"); }
		catch(ex) {
  		try { req = new XMLHttpRequest(); }
			catch(exc) {
   			alert("Esse browser não tem recursos para uso do AJAX!");
   			req = null;
  		}
 		}
	}
	return req;
}

//----------------------------------------------------------------------------------------//
function produto(codigo) {
	ajax = inicia();
	if(ajax) {
		ajax.onreadystatechange = dados;
		ajax.open('get','modulos/produtos/dados.php?'+codigo,true);
		//ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		ajax.send(null);
	}
}
//----------------------------------------------------------------------------------------//
function dados() {
	var obj = document.getElementById('detalhes');
	var imagem = document.getElementById('imagem');
	var titulo = document.getElementById('titulo');
	var descricao = document.getElementById('descricao');
	
	
	
	if(ajax.readyState==4) {
		
		if(ajax.status==200) {
			//alert(ajax.responseText);
			var valores = ajax.responseText.split("+");
			
			titulo.innerHTML = valores[0];	
			descricao.innerHTML = valores[1];
			imagem.innerHTML = '<img src="upload/produtos/'+valores[2]+'" alt="" title="" border="0" />';
		}
	}
}
//----------------------------------------------------------------------------------------//

