 
function openDisclaimerWinTest() {
  	if (document.cookie) {
  	  if (document.cookie.toLowerCase().indexOf("us_healthcare=yes") >= 0) {
  	    window.location.href="/raltegravir/isentress/hcp/index.jsp";
  	    return;
  	  }
  	}	
	var myWin = window.open("/raltegravir/isentress/hcp_disclaimer_popup.jsp","Healthcare","status=no,width=301,height=190, scrollbars=no")
  	if (myWin.opener == null) 
  		myWin.opener=window;
  	myWin.opener.name="opener";
	myWin.focus();
} 
/* used on hcp_disclaimer_popup */
function go(url) {
	opener.location.href=url;
}

function targetopener(mylink, closeme, closeonly)
{
	if (! (window.focus && window.opener))return true;
	window.opener.focus();
	if (! closeonly)window.opener.location.href=mylink.href;
	if (closeme)window.close();
	return false;
}