function Comprobar(unidades, puntos, anterior){
   var disponible;
   var i;
   disponible = parseInt(document.CARRITO.PUNTOS.value) + (parseInt(anterior.value) * puntos);
   if ((parseInt(unidades.selectedIndex) * puntos) > (disponible)) {
   	  alert("No tienes suficientes puntos para efectuar este canje.");
	  for (i=0;i<unidades.length;i++) {
	  	  if (unidades.options[i].index == anterior.value) {
		     unidades.options[i].selected = true;
		  }
	  }
   }else{
      disponible = disponible - (parseInt(unidades.selectedIndex) * puntos);
	  anterior.value = unidades.selectedIndex;
	  document.CARRITO.PUNTOS.value = disponible;
	  document.CARRITO.PUNTOS3.value = disponible;
 	  document.CARRITO.PUNTOS2.value = document.CARRITO.PUNTOSINICIALES.value - disponible;
	  document.CARRITO.PUNTOS4.value = document.CARRITO.PUNTOS2.value;
   }
}
function AbrirVentana(NomFoto, Producto, Precio) {
   var NomFoto;
   msgWindow=open("inc/visor.asp?prec=" + Precio + "&nom=" + NomFoto + "&id=" + Producto,"ventana1", "toolbar=no,width=675,height=400,status=no,scrollbars=no,resizable=yes,menubar=no");
   msgWindow.moveTo(0,0);
   msgWindow.focus();
}
function Validar(){
   if (document.CARRITO.PUNTOS2.value == "0") {
      alert("Elija los productos a canjear.")
   }else{
      document.CARRITO.submit();
   }
}