 window.addEvent('domready', SP_CONT_START);

//	Inicializa la funcion
	function SP_CONT_START(){
		contItems = 0;
		SP_CONT();
	}

//	Control de envio
	function SP_CONT(urlop){
		
// 		Chequea click en boton envío
		checkenv = String(urlop);
		
		if(checkenv.match(/NroItem=99/gi)){
			contItems = contItems + 1;
		}

// 		Acepta si se añadieron los costos de envío, sino abre la ventana de envio
		if (contItems < 1){
			if($("TB_window")!=null){
				$("TB_window").innerHTML ='';
				TB_show("Mensaje", "/aplicacion/modulos/shop/items/envio.php?width=480&height=333", "Mensaje")
			}else{
				TB_show("Mensaje", "/aplicacion/modulos/shop/items/envio.php?width=480&height=333", "Mensaje")
			}
		}else{
			TB_remove();
			window.open(urlop,'Carrito','width=640,height=300,toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=yes,directories=no');
		}
	}
