﻿// JScript File

function confirm_ex(url)
  {
    if (confirm('You are now leaving the MYOBLOC Reimbursement site.'))
    {
    window.open(url);
	return true;
    }
    return false;
  }
  
  
 function leaving_ex(url)
  {
    if (confirm('You are now leaving the MYOBLOC Reimbursement site.'))
    {
    window.open(url);
	return true;
    }
    return false;
  }

  function vital_md(url) {
      if (confirm('You are now leaving the MYOBLOC Reimbursement site.')) 
      {
      window.open(url, '_blank');
      return true;
      }
      return false;
  }
