function addToShoppingCart(f_id, p_id) {
	eval("document."+f_id+".submit()");
}

function update_cart(ask) {
	if (ask == 'yes'){
		var update = window.confirm("Ali želite spremeniti količine izdelkov v košarici?");
		if (update) {
			eval("document.form_cart.submit()");
		}
	} else {
		eval("document.form_cart.submit()");
	}
}

function empty_cart() {
	var empty = window.confirm("Vsi izdelki bodo odstranjeni!");
	if (empty) {
		window.location.replace("shopping_cart.php?action=empty_cart");
	}
}

function remove_product(id) {
	var remove = window.confirm("Izdelek bo odstranjen iz košarice!");
	if (remove) {
		window.location.replace("shopping_cart.php?action=remove_product&product=" + id);
	}
}

/*
function getPassword() {
  newWindow = window.open("orodja_geslo.php", "Priporoči",  "SCROLLBARS=NO, RESIZABLE=YES, WIDTH=250, HEIGHT=460");
  newWindow.focus();
}
*/
function ValidatePayment() {
	myOption = -1;
	for (i=0; i<document.paymentMethod.p_method.length; i++) {
		if (document.paymentMethod.p_method[i].checked) {
		myOption = i;
		}
	}
	
	if (myOption == -1) {
		alert("Izberite način plačila!");
		return false;
	} else {
		return true;
	}
}