function eliminarArticulo(a)
{
	if (confirm ("¿Desea eliminar este articulo?"))
	{
		window.location = "cesta.asp?A=" + a + "&ACT=B"
	}
}

var nav4 = window.Event ? true : false;

function validar(evt)
{
	var key = nav4 ? evt.which : evt.keyCode;
	//return (key <= 13 || (key >= 48 && key <= 57) || (key >= 96 && key <= 105));
}
function establecerCantidad(a)
{
	cant = document.getElementById("art" + a).value;
	window.location = "cesta.asp?A=" + a + "&ACT=E&C=" + cant;
}
function cerrado()
{
	alert('Estamos trabajando en el mantenimiento de la página, disculpen las molestias. No puede realizar compras.');
}

