function setDirection(e, d) {
	if (d == "up") {
		e.parentNode.style.backgroundPosition = '-20px 0px';
	} else if (d == "down") {
		e.parentNode.style.backgroundPosition = '0px 0px';
	}
}
function restoreDirection(e) {
	e.parentNode.style.backgroundPosition = '-10px 0px';
}
function cambiaQta(key, up) {
	var target = ('qta_' + key).toString();
	if ($(target).innerHTML == 1 && up != 1) {
		var c = confirm("Procedendo verrā cancellato dall'ordine il vino selezionato ("+ key +"). Procedo?");
		if (c) {
			var url = "change_qta.php";
			var pars = "key=" + key + "&up=" + up;
			var myAjax = new Ajax.Request(
				url,
				{
					method: 'post',
					parameters: pars,
					onComplete: refresh
				}
			);
		}
	} else {
		var url = "change_qta.php";
		var pars = "key="+key+"&up="+up;
		var myAjax = new Ajax.Request(
			url,
			{
				method: 'post',
				parameters: pars,
				onComplete: refresh
			}
		);
	}

}
function refresh(r) {
	window.location = window.location;
}

function checkForm() {
	if (!$('nome') || $F('nome') == "") {
		alert("Il campo 'nome o ragione sociale' č obbligatorio.");
		$('nome').focus();
		return false;
	}
	if (!$('email') || $F('email') == "") {
		alert("Il campo 'e-mail' č obbligatorio.");
		$('email').focus();
		return false;
	}
	return true;
}