function cesta(producto, cantidad, aviso)
{
	var c=document.getElementById(cantidad).value;
	if (!isNaN(c)&&(c > 0))
	{
		var hwnd_width = 400;
		var hwnd_height = 200;
		var hwnd_left = (screen.width - hwnd_width) / 2;
		var hwnd_top = (screen.height - hwnd_height) / 2;
		var hwnd = window.open("addp.php?p=" + producto + "&c=" + c, "cesta", "toolbar=no, scrollbars=0, resizable=no, left=" + hwnd_left + ", top=" + hwnd_top + ", width=" + hwnd_width + ", height=" + hwnd_height);
		hwnd.focus();
	}
	else
		alert(aviso);
}
function borrarProducto(producto,seccion,msg)
{
	if (window.confirm(msg))
		document.location.href = "s.php?s="+seccion+"&pid="+producto+"&a=1";
}
function actualizaProducto(producto,cantidad,seccion,aviso)
{
	var c=document.getElementById(cantidad).value;
	if (!isNaN(c)&&(c > 0))
		document.location.href = "s.php?s="+seccion+"&pid="+producto+"&c="+c+"&a=2";
	else
		alert(aviso);
}
