function minOrderCheck(min,pers) {
	var qty = document.rssOrderForm.qty;
	if(qty.value == '' || isNaN(qty.value)) {
	 alert("Please enter a number.");
	 qty.focus();
	 return false;
	} else if (qty.value < min) {
	 alert("The quantity you entered ("+qty.value+") is less than the minimum required ("+min+").");
	 qty.focus();
	 return false;	
	} else if (pers > 0 && document.rssOrderForm.att3 && document.rssOrderForm.att3.value == '') {
	 alert("The  product you selected must be personalized.  Please enter a custom text message.");
	 qty.focus();
	 return false;	
	}
	return true;
}