function validate(order,min)
{
if ((order*1)<(min*1))
{
msg="Your order quantity of ";
msg+=order;
msg+=" is below the minimum order quantity for this product, ";
msg+=min;
alert(msg);
return false
}
else {return true}
}
