      // <!--
 
      function Ancho() {
        AnchoPantalla=screen.width;
        return AnchoPantalla;
      }

      function Suma(ElObj) {
        if (isNaN(ElObj.value)) ElObj.value=1;
        Valor=ElObj.value;
        if (Valor==10) Valor--;
        Valor++;
        ElObj.value=Valor;
        ElObj.focus;
      }

      function Resta(ElObj) {
        if (isNaN(ElObj.value)) ElObj.value=1;
        Valor=ElObj.value;
        if (Valor==1) Valor++;
        Valor--;
        ElObj.value=Valor;
        ElObj.focus;
      }

      
      function AgregarCarrito(ElForm) {
        var Cantidad=ElForm.QU.value;
        if (isNaN(Cantidad)) ElForm.QU.value=1;
        if (ElForm.QU.value<=1) ElForm.QU.value=1;
        if (ElForm.QU.value>10) ElForm.QU.value=10;
        if (ElForm.TIPO[0].checked) {
          ElTipo="DVD";
        } else {
          ElTipo="VHS";
        }
        LaURL='shopcart.php?DVDID='+ElForm.ID.value+'&DVDCANTIDAD='+ElForm.QU.value+'&DVDTIPO='+ElTipo;
        XPos=(screen.width/2)-230;
        YPos=(screen.height/2)-145;
        ElCarrito=window.open(LaURL,'Carrito','location=0,scrollbars=1,status=0,toolbar=0,top='+YPos+',left='+XPos+',width=460,height=290');        
      }

      function VerCarrito() {
        LaURL='shopcart.php';
        XPos=(screen.width/2)-230;
        YPos=(screen.height/2)-145;
        ElCarrito=window.open(LaURL,'Carrito','location=0,scrollbars=1,status=0,toolbar=0,top='+YPos+',left='+XPos+',width=460,height=290');
      }

      function ComprarCarrito() {
        LaURL='comprar.php';
        XPos=(screen.width/2)-210;
        YPos=(screen.height/2)-145;
        ElCarrito=window.open(LaURL,'Carrito','location=0,scrolls=1,status=0,toolbar=0,top='+YPos+',left='+XPos+',width=430,height=290');
      }

      function Confirmar(Mensaje) {
        var agree=confirm(Mensaje);
        if (agree)
          return true;
        else
          return false;
      }


      // -->


