function ChkCount (obj) {
	var loc;
	count = obj.loc.value;
	if (count == 0) {
		alert ("Please, select a shipping zone/country!");
		return false;
	}
	if (count == 1) {
		alert ("We are sorry, but we are generally not shipping roses to other countries. Please contact us to check shipping feasibility and conditions.");
		return false;
	}
	if (count == 2) {
		alert ("We are sorry, but this rose is only shipped in container. It cannot be shipped to Overseas France.");
		return false;
	}
	if (count == 3) {
		alert ("We are sorry, but this rose is only shipped in container. It cannot be shipped to Japan.");
		return false;
	}
	return true;
}

function CalShipCost(obj) {
	if (confirm("Please note that shipping of naked root roses will only start by mid-October. If you order now, we will take good note of it but will ship it only by mid-October, 2011.")) {
		var i = obj.loc.selectedIndex;
		var rec = obj.loc[i].value.split("|");
		obj.os0.value = rec[0];
		obj.handling_cart.value = rec[1];
		obj.shipping.value = rec[2];
		obj.shipping2.value = rec[3];
	}
	else{
		return false;
	}
}
