<!--
function confirmBox(okPath, cancelPath, message) { //v3.0;\
	var reply = confirm(message);
	if (reply)
		window.location = okPath;
	else
		window.location = cancelPath;
}

function checkOut(total, formName) { //v3.0;\
	if (total < 180){
		alert("Your payment biil(HKD "+ total +") is less than minimum payment fee(HKD 180)");
		return false;
	}else{
		formName.submit();
	}
}

//-->