function allowReset() {
	return window.confirm("Are you sure you want to CLEAR ALL THE FIELDS and start over?")
}

function allowInsert() {
	return window.confirm("Are you sure you want to CREATE the record?")
}

function allowUpdate() {
	return window.confirm("Are you sure you want to UPDATE the record?")

}

// Use this script when submitting form with onSubmit
function allowDelete() {
  return window.confirm("Are you sure you want to DELETE the record?")
}

//Use this script when submitting form with onClick
function confirmDelete() {
  if(window.confirm("Are you sure you want to DELETE the record?"))
    document.frmDelete.submit();
      //else don't do anything.
 }

//Use this script when submitting form with onClick
function allowCancel() {
  if(window.confirm("Are you sure you want to CANCEL this step? Changes you have made on this page WILL NOT BE SAVED."))
    document.location='home.asp'
      //else don't do anything.
 }

//Use this script when submitting form with onSubmit
function allowOrder() {
  return window.confirm("If you ARE NOT within the CONTINENTAL US, you WILL LOSE 5% of your purchase price. Are you sure you want to place your order? ")

 }

//Use this script when submitting form with onClick
function allowAccOrder() {
 return window.confirm("If you ARE NOT within the CONTINENTAL US, you WILL LOSE 5% of your purchase price. Are you sure you want to place your order?")

 }

//Use this script when submitting form with onClick
function orderPedals() {
  if(window.confirm("If you ARE NOT within the CONTINENTAL US, you WILL LOSE 5% of your purchase price. Are you sure you want to continue?"))
    document.location='order_pedals.asp'
      //else don't do anything.
 }
 
//Use this script when submitting form with onClick
function orderAccessories() {
  if(window.confirm("If you ARE NOT within the CONTINENTAL US, you WILL LOSE 5% of your purchase price. Are you sure you want to continue?"))
    document.location='order_accessories.asp'
      //else don't do anything.
 }
 
function emailPopup() {
	return window.confirm("Fulltone has moved. Please note the new address and phone numbers: \nFulltone Musical Products\n4220 Glencoe Ave.\nMarina Del Rey, CA 90232.\nPh. (310) 821-4500, Fax (310) 821-4511")

}

//Use this script when submitting form with onSubmit
function audioError() {
  return window.confirm("We are experiencing some technical difficulties with our video and .mp3 audio files.\nThank you for your patience as we work to resolve the problem.")

 }