<!--

function check_min_qty(frm,mq)
{	
	var qty = frm.value;
	
	if(qty < mq) {
		alert('Minimum order of ' + mq + ' pieces is required.');
		frm.value = mq;
		frm.focus();
	}
}

//-->