/*************************************************/
/************ Telémaco Sistemas S.L **************/
/*************************************************/

var visible = 0;
function articulo(id)
{  
  var articulo_ocultar = document.getElementById("art_"+visible).style;
  articulo_ocultar.display = "none";
  
  visible = id;
  
  var articulo = document.getElementById("art_"+id).style;
  articulo.display = "";  
}

function articulo_add(id)
{
  var cache = Math.round(Math.random()*1000);
  var select = document.getElementById("opcion"+id);
  var indice = select.selectedIndex;
  var idopcion = select.options[indice].value;
  var nom_opcion = select.options[indice].text;  
  var nom_select = select.name;

  var select_cantidad = document.getElementById("cantidad"+id);
  var indice = select_cantidad.selectedIndex;
  var cantidad = select_cantidad.options[indice].value;  
  
  
  //llamarasincrono('carrito_ajax.asp?idarticulo='+id+'&'+nom_select+'='+idopcion+'&MICROSEG='+cache ,'carrito');
  //alert("El artículo se ha añadido a su cesta de la compra.");
  
  if(confirm('La talla que ha elegido es ' + nom_opcion + ' ¿Confirma usted que es esta talla la que quiere? \n Si tiene alguna duda puede consultar información sobre las tallas desde la opción Tallas del menú lateral.')){
    document.location='bolsa.asp?idarticulo='+id+'&'+nom_select+'='+idopcion+'&MICROSEG='+cache+'&CANTIDAD='+cantidad;    
  }
}

function paginar()
{
  document.fpaginacion.INDICE.value = document.fpaginacion.selectpag.value;
  document.fpaginacion.submit();
}
function paginar2()
{
  document.fpaginacion2.INDICE.value = document.fpaginacion2.selectpag2.value;
  document.fpaginacion2.submit();
}