// JavaScript Document

function checkminium_price_val(){




if(Number(document.getElementById("totpriceofproducts").value) < Number(document.getElementById("miniumpriceforcheckout").value)){
		alert("Please note that the minimum order value is "+ document.getElementById("miniumpriceforcheckout1").value+". Please meet this minimum requirement before checking out");
		return false;
	}else{
		window.location.href = document.getElementById("locofpage").value;
	}
}

