function addProducto(identificador,cantidades){
	document.parri.idx.value=identificador;
	document.parri.cantidad.value=cantidades;
	postForm('parri', true, okfunction);

}
function okfunction(retolno){
//modeloc
contenedor = document.getElementById('cesta');
contenedor.innerHTML = unescape(retolno.responseText).replace(/\+/g,' ') ;

}
