<!-- Begin //
//
// © Copyright 2003 Blacksheep, Inc. all rights reserved.
// Tested in Netscape 4.7 and Internet Explorer 6.0.2800.1106.
//
// Do not change anything below this besides the value of confirmedmsg if
// you wish to change the message the user will see if they choose a different
// quantity than what is set as the default quantity.
//
	function VerifyMe(fname) {
		var confirmedmsg;
		var qty    = fname.qty.value;
		var price  = fname.price.value;
		var aqty   = fname.aqty.value;
		var dprice = fname.dprice.value;
		if (qty != aqty && price != dprice) {
			confirmedmsg =  'You have entered a quantity that is not the full quantity of ' + aqty + '. ';
			confirmedmsg += 'In order to bid on a price other than $' + dprice + ', you must bid using ';
			confirmedmsg += 'the full quantity on hand (' + aqty + ').\n\n';
			confirmedmsg += 'Do you wish to continue using the full price of $' + dprice + '?\n\n';
			var confirmed = confirm(confirmedmsg);
			if (confirmed) {
				fname.price.value = fname.dprice.value;
				return true;
			}
			else {
				fname.qty.value = fname.aqty.value;
				return false;
			}
		}
		return true;
	}
//  End --> 