// JavaScript Document
function validateCancel(msg)
{
  if (confirm("Canceling will erase all form information.  Click OK to cancel the form process and return to browsing Bersin & Associates.")) {	
      window.location.href="Default.aspx";
	  return true;
	}
  else {
	return false;
	}
}

function cancelMsg(msg)
{
  if (confirm(msg)) {
      window.reload();
	  return true;
	}
  else {
	return false;
	}
}
