// JavaScript Document used to pop new window when users are leaving Cahaba GBA site. This script is included in the header_scripts.inc file and on each page. Call from any hyperlink as follows: <a href="http://www.cms.gov/" onclick="return display_message(this.href)">Go the the CMS Site</a>

<!-- Hide from browsers without javascript
var next_page;

function display_message(clicked_link_href)
{
next_page = clicked_link_href;
window.open("/leaving_message.htm", "", "status, menubar, scrollbars, location, width=800, height=600, top=100, left=100, resizable");
return false; //cancels onclick action so href in link doesn't load in main page
}

// End hiding -->