// script checker


function checkForInt(){
	var isOK = true;
	for( i = 0; i < arguments.length && isOK;  i++ ) {
	  if (isNaN(arguments[i].value) || arguments[i].value < 5 ) {
		// something is wrong
		alert('Quantity must be a minimum of 5. For split orders where sum of splits is more than 5, please call 416-467-7758');
		arguments[i].select();
		arguments[i].focus();
		isOK=false;
	  }
	}
	// If the script makes it to here, everything is OK,
	// so you can submit the form
	
	return isOK;
	
	
}