function addCupom(form){
	var cart_cupom = document.getElementById('cart_cupom');
	
	if(cart_cupom.value.length == 0){
		alert("Para incluir um cupom, preenchar o campo em foco.");
		cart_cupom.focus();
		return false;
	}
	
	loading(1);
	window.location = "?h_pg=commerce&bin=cart&act=cupom&tip=add&codigo="+cart_cupom.value;
	return true;
}
