function checkMinOrderAmount(minOrderAmount, inptOrderedAmountId ){
	try{
		try{var orderedAmount = parseFloat(document.getElementById(inptOrderedAmountId).value);}catch(ex){var orderedAmount = 1.0;}
		try{minOrderAmount = parseFloat(minOrderAmount);}catch(ex){minOrderAmount = 0.0;}
		
		return orderedAmount >= minOrderAmount ? true : false;
	}catch(ex){return true;}
}