<!--

function GoBack()
{
  history.go(-1);  
}

function confirmCancel()
{
  return confirm("Do you really want to cancel this order?");
}

function confirmConfirm()
{
  return confirm("Do you really want to confirm, and so disallow changes to, this order?");
}

function confirmDiscard()
{
  return confirm("Do you really want to discard this order?");
}

function confirmDelete()
{
  return confirm("Do you really want to delete this order?");
}

function confirmDeleteOrder()
{
  return confirm("Do you really want to delete this order?");
}

function confirmDeleteRecord()
{
  return confirm("Do you really want to delete this record?");
}

function toUpper(elem) {
  elem.value = elem.value.toUpperCase();
}

// -->
