function addToCart(items){
	
	if (items==10){
		showAlerta6();
	}else{
		var cantidad=document.getElementById("cantidad").value;
		
		if (cantidad==""){
			showAlerta5();
		}else{
			document.addToCart.action="addToCart.php";
			document.addToCart.submit();
		}
	}
}

function editFromCart(){
	var cantidad=document.getElementById("cantidad").value;
	
	if (cantidad==""){
		showAlerta5();
	}else{
		document.addToCart.action="editFromCart.php";
		document.addToCart.submit();
	}
}