function html_entity_decode(str) {
  var ta=document.createElement("textarea");
  ta.innerHTML=str.replace(/</g,"&lt;").replace(/>/g,"&gt;");
  return ta.value;
}

var healthcare = readCookie("healthcare");
var hint_hcp = html_entity_decode("La informaci&oacute;n que se encuentra en este sitio es solo para los profesionales de la salud en Latinoam&eacute;rica. De clic en \"Aceptar\" si usted es un profesional de la salud.");
if (hint_hcp != "") {
if (healthcare != 'passed') {
   if (confirm(hint_hcp)) {
		createCookie("healthcare", 'passed', 0);
   } else { 
	   if(window.history.length>1)
			history.back();
		else
			window.location.href="about:blank";
   }
}
}