function comprar(idP,p)
{
	
	/*var peso;
	if(p>0)
	{
		peso = p;
		
	}
	else if(document.getElementById('pesoTot'))
	{
		peso = document.getElementById('pesoTot').value;
		
	}
	else
	{
		peso="";
	}

	
	var ajax = new Ajax;
	ajax.iniciar();
	ajax.setTipo('POST');
	ajax.setXML('xml/comprar.php');
	ajax.setDados('idP='+idP+'&peso='+peso);
	ajax.envio(new retComprar());*/
}

function retComprar()
{
	this.main = main
	function main(Ajax)
	{
		//var xml = Ajax.responseXML;
		//var result = Ajax.responseText;
		//alert(result);
		/*window.location='?pg=carrinho';*/
			
	}
}




