function validatePrice() {  // ensure Min. Price < Max. Price
  lowObj=document.getElementById('min_@listprice');
  highObj=document.getElementById('max_@listprice');

  //if (parseInt(lowObj.value) > parseInt(highObj.value)) {
  if (lowObj.value > highObj.value) {
    alert ("Your maximum list price cannot be less than your minimum list price");
	dfields['max_@listprice'].focus();
    return false;
  }
  else {
    document.getElementById('dfields').submit();
  }
  return false;
}
