function clearGlobalValues() {
document.submitForm.numberItems.value = 1
document.submitForm.cost.value = 9.99
}
function clearValueOnClick() {
document.submitForm.numberItems.value = ("")
}
function checkOrder() {
	numItems = document.submitForm.numberItems.value
	tCost = document.submitForm.cost.value
	descrip = document.submitForm.desc.value
	dPA = document.submitForm.fdpa.checked
   if (numItems == "" || numItems == null || numItems == 0) {
       alert("Please specify how many CDs you'd like to buy and try again.")
     return false
  }
  else
  if (tCost != (numItems * 9.99)) {
	alert ("The Quantity and Total Cost Do Not Add Up. Please Re-Enter the Quantity and Try Again.")
	return false
	}
	else
	{
	document.submitForm.desc.value = ("John Brogden Land of Fire, Audio CD. Quantity " +numItems)
	}
	var dot = '.';
	if (dPA == true) document.submitForm.desc.value = (document.submitForm.desc.value +dot)
	else
    {
      return true
   }
}
function calcTotalPrice() {
numItems = document.submitForm.numberItems.value
		document.submitForm.cost.value = (numItems * 9.99)
}
