if (self.location==top.location) top.location="index2.html"
articulo = new Array();
articulo[2]=new Array();
articulo[2][0]='CCostilla';
articulo[2][1]=10.22;
articulo[2][2]='Conserva de Costilla (1 Kg aprox)';
articulo[2][3]=1;
articulo[3]=new Array();
articulo[3][0]='CLomo';
articulo[3][1]=13.22;
articulo[3][2]='Conserva de Lomo (1 Kg aprox)';
articulo[3][3]=1;
articulo[4]=new Array();
articulo[4][0]='CLonganiza';
articulo[4][1]=10.82;
articulo[4][2]='Conserva de Longaniza (1 Kg aprox)';
articulo[4][3]=1;
articulo[5]=new Array();
articulo[5][0]='CMezcla';
articulo[5][1]=11.42;
articulo[5][2]='Conserva de Mezcla (1 Kg aprox)';
articulo[5][3]=1;

 var opciones = '';
function ventana(pagina)
{
window.open(pagina,'Bienvenida','width=450,height=350,location=0,status=0,directories=no,toolbar=no,resizable=yes,menubar=no,scrollbars=yes');
};
function ACCostilla(cantidad){
opciones = '';
parent.frames['cesta'].cesta(2,opciones,cantidad);
};
function ACLomo(cantidad){
opciones = '';
parent.frames['cesta'].cesta(3,opciones,cantidad);
};
function ACLonganiza(cantidad){
opciones = '';
parent.frames['cesta'].cesta(4,opciones,cantidad);
};
function ACMezcla(cantidad){
opciones = '';
parent.frames['cesta'].cesta(5,opciones,cantidad);
};


