//easypay
function easypay(price)
{	
	if(price == '')
	{
		return 0;
	}
	return sprintf("%.2f",(price * 1.038 + 2.8) / 6);
}
