// ce.js

function confirmArticle(CEFile){

	confirmWindow = window.open('','CEConfirm','width=400,height=200,resizable,scrollbars,status=0');
	var confirmHTMLString = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> \
	<html><head><title>Bayer Science Library</title> \
	<link href="ce.css" rel="stylesheet" type="text/css" media="all" /> \
	</head> \
	<body><div class="sciLibConfirm"><p>All statements, claims, or product endorsements made in this CE program are the opinions of the author and do not necessarily reflect the views of Bayer or any of its affiliates.</p> \
	<form> \
	<div class="button"><input type="button" class="button" value="I have read and understand" onclick="window.open(\''+CEFile+'\',\'CETest\',\'width=830,height=620,resizable,scrollbars\');window.close();"></div> \
	</form> \
	</div></body></html>';

	confirmWindow.document.write(confirmHTMLString);
	confirmWindow.focus();
}
