function openDisclaimerWin() {
  	if (document.cookie) {
  	  if (document.cookie.toLowerCase().indexOf("us_healthcare=yes") >= 0) {
  	    window.location.href="/losartan_potassium/cozaar/hcp/index.jsp";
  	    return;
  	  }
  	}

  	var myWin = window.open("/losartan_potassium/cozaar/hcp_disclaimer_popup.jsp","Healthcare","status=no,width=300,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;
}