/**
 * Misc functions for prepare and test forms.
 */
 
/**
 * Checking shipment and payment fields in cart
 */
function checkShipment(form) {
		
	var test=false;
	for(var i=0; i<form.shipmeth.length; i++){
		if (form.shipmeth[i].checked==true){
			test==true;
			break;
		}
	}
	
	if(!test) {
		window.alert("Proszę wybrać sposób dostawy.");
		return false;
	}	
	
	return true;
}

function checkPayment(form) {
		
	var test=false;
	for(var i=0; i<form.paymeth.length; i++){
		if (form.paymeth[i].checked==true){
			test==true;
			break;
		}
	}
	
	if(!test) {
		window.alert("Proszę wybrać formę płatności.");
		return false;
	}	
	
	return true;
}