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