﻿function targetBlank(url)

{
  var title = "Morquio";
  
  var msg = "The link you have selected will take you away from this site to one that is not controlled by or affiliated with morquiobmrn.com or BioMarin. We have not contributed to, nor do we have control over, the content of the site you have selected and accordingly, the content you are about to view cannot and should not be attributed to BioMarin.<br />"+"<a onClick='window.open(link); self.close();' href=''>"+url+"</a>";
  
  var width="370", height="170";

  var left = (screen.width/2) - width/2;

  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

  var msgWindow = window.open("","msgWindow", styleStr);

  var head = "<head><title>"+title+"</title><style type='text/css'>p{font-family:arial; font-size:11px;}</style><script type='text/javascript'>"+"var link='"+url+"';</script></head>";

  var body = '<p>'+msg+'<p><center><form><input type="button" value="Continue" onClick="window.open(link); self.close();">&nbsp;&nbsp;<input type="button" value="Cancel" onClick="self.close();"></form></center>';
msgWindow.document.write(head + body);
}