window.onload = initialize; 
function initialize() {
	healthCareSupport();
}
function healthCareSupport(){
	var HTMLDisp = '';
	if (document.getElementById('DocID')){
		var supportStatement = document.getElementById('DocID');
	}
	HTMLDisp = HTMLDisp + '<div id=\"supportGrant\">Supported by a grant from Vysis, Inc., a wholly-owned subsidiary of Abbott Laboratories.</div>';
	supportStatement.innerHTML = HTMLDisp
}

