function ConfirmDelete() {
	return confirm('Delete this Order?\nBy deleting all order information it will be removed.  Once removed\nthe information may not be restored.\n\nIf you do not wish to delete this information, select Cancel now.')
}
function ConfirmDeleteAddress() {
	return confirm('Delete this Address?\nBy deleting this address it will be removed.  Once removed\nthe information may not be restored.\n\nIf you do not wish to delete this information, select Cancel now.')
}
function openwin(URL,W,H) {

	window.open(URL,'HELP','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + W + ',height=' + H);

}
function ShowHideElement(location) {
  var DisplayChoice = "none";
  if (document.getElementById(location).style.display == "none")
  { DisplayChoice = "block";	}
  document.getElementById(location).style.display = DisplayChoice;
}
