function confirmMove(address) {

  if (confirm('You are navigating away from the quotation form before completing it!\n\nPlease be aware that this may result in you losing any information that you have entered. Click OK to quit the quotation or Cancel to continue with it'))
    {
   document.location.href=address;
   return false;
   } else {
   return false;
   }



}