<!-- **** Javascript Are you Sure? confirmation function **** -->
<!-- OurWebSurvey -->
<!-- All code is strictly copyright of Visualize Systems Ltd, UK, 2002-present. -->
<!-- hide script
  // checks browser version - needed for Confirm() function
  browser = (((navigator.appName == "Netscape") && 
              (parseInt(navigator.appVersion) >= 3 )) ||
            ((navigator.appName == "Microsoft Internet Explorer") &&
              (parseInt(navigator.appVersion) >= 3 )))

// The Confirm() function does not work with very early browsers,
// hence the version check
function ConfirmOperation(sText)
{
  line1=sText;
  if (browser)
      if (confirm(line1))
          return(true);
      else
          return(false);
  else
      return(false);
}
// end hiding -->
