function modificaQta(id) {
	var campo = "qta" + id;
	var valore = document.getElementById(campo).value;
	if (valore == 0) {
		//document.location.href = "http://1017612%40aruba.it:5kca29hf@www.medigestinfo.it/carrello.php?act=del&amp;id=" + id;
		document.location.href = "../carrello.php?act=del&id=" + id;

	}
	else {
		//document.location.href = "http://1017612%40aruba.it:5kca29hf@www.medigestinfo.it/carrello.php?act=mod&amp;qta=" + valore + "&id=" + id;
		document.location.href = "../carrello.php?act=mod&qta=" + valore + "&id=" + id;

	}
}

function add(id) {
	var campo = "add" + id;
	var valore = document.getElementById(campo).value;
	if (valore == 0) {
		return false;
	}
	else {
	//	document.location.href = "http://1017612%40aruba.it:5kca29hf@www.medigestinfo.it/carrello.php?&act=add&qta=" + valore + "&id=" + id;
		document.location.href = "../carrello.php?&act=add&qta=" + valore + "&id=" + id;

	}
}
