
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
	<meta charset="utf-8">
	<title>Viva Learning: CE Finder</title>
	<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<style>
#viva_svc_div_wrapper {
	font-family: Verdana, Arial;
	font-size: 11px;
	line-height: 12pt;	
}

.pTitlePrefix {
	width: 4px;
}

.psubTitleBlack {
	color: #333333;
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-top: 5px;
}

.graybar {
	background-color: #C7C7C7;
	margin-top: 0px;
	padding-top: 0px;
}

.bdy {
	font-family: Verdana, Arial;
	font-size: 11px;
	line-height: 12pt;	
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

.earnceu {
	background-colorXX: #FC0;
	background-color: #FFF;
	colorXX: #000;
	color: #F00;
	font-size: 11px;
	font-weight: bold;
	margin: 0px 0px 0px 5px;
	padding: 4px 0px 4px 0px;
	text-align: center;
	text-decoration: none;
	width: 85px;
}

/* -------------------------------- */
/* -- Search styles -- */
/* -------------------------------- */


	#viva_ce_finder_div {
		background: url(/art/cefinder/viva_ce_finder_bg.jpg) no-repeat top left;
		display: block;
		height: 200px;
		margin: 10px auto 20px auto;
		padding: 0px;
		position: relative;
		text-align: left;
		width: 500px;
	}
	
	#viva_search_form {
		display: block;		
		height: 200px;
		margin: 0px;
		padding: 0px;
		text-align: left;
		width: 500px;		
	}	
	#x_query {
		border: none;
		font-family: arial;
		font-size: 12px;
		height: 22px;
		left: 260px;
		top: 15px;
		position: absolute;
		width: 155px;
	}
	#viva_search_button {
		height: 24px;
		left: 420px;
		top: 12px;
		position: absolute;
		width: 65px;		
	}
	#viva_search_header_text {
		font-family: verdana, arial;
		font-size: 9px;
		line-height: 14px;
		padding: 0px 5px 0px 10px;
		position: absolute;
		top: 50px;
	}
	#viva_search_footer_available {
		font-family: verdana, arial;
		font-size: 10px;
		line-height: 14px;
		position: absolute;
		text-align: center;
		top: 148px;
		width: 500px;
	}
	
	#viva_search_footer_results {
		font-family: verdana, arial;
		font-size: 10px;
		line-height: 14px;
		position: absolute;
		text-align: center;
		top: 175px;
		width: 500px;
	}
	#viva_select_wrapper {
		position: absolute;
		top: 85px;
	}
	
	#x_catID_div {
		visibility: hidden;
	}	
	#x_companyID_div {
		visibility: hidden;
	}	

	.viva_select_box {
		float: left;	
		text-align: center;
		width:250px;
	}
	.viva_select_inner_box {
		float: left;	
		text-align: center;
	}

	.viva_select_label {
		color: #F33;
		font-family: verdana, arial;
		font-size: 10px;
		font-weight: bold;
	}
	.viva_results_label {
		color: #F33;
		font-family: verdana, arial;
		font-size: 11px;
		font-weight: bold;
	}	
	#viva_loading {
		left: 8px;
		position: absolute;
		top: 175px;
		visibility: hidden;
	}

</style>
<script language="JavaScript">
// alert('svcContent.asp: i am here!!  code: {30EC7332-F2A3-4142-980E-055CC5987DAD}');

function doVivaSearchKeyword(e) {
	if (!e) e = window.event;
	if ( e && e.preventDefault ) e.preventDefault();
	if ( e && e.cancelBubble ) e.cancelBubble();
	showLoading( 'viva_loading', true, "/art/loading_small.gif" ); 

	var varr = [];
	varr.push( 'x_action=search' );
	varr.push( 'x_type=keyword' );
	varr.push( 'x_profileCode=' + escape( getFieldValue('x_profileCode')));
	varr.push( 'x_query=' + escape(getFieldValue( 'x_query' )));	
	
	doVivaChangePage( varr );
	return false;
}	// doVivaSearchKeyword

function doVivaSearchCategory(e) {
	if (!e) e = window.event;
	if ( e && e.preventDefault ) e.preventDefault();
	if ( e && e.cancelBubble ) e.cancelBubble();
	showLoading( 'viva_loading', true, "/art/loading_small.gif" ); 

	var varr = [];
	varr.push( 'x_action=search' );
	varr.push( 'x_type=category' );
	varr.push( 'x_profileCode=' + escape( getFieldValue('x_profileCode')));
	varr.push( 'x_catID=' + escape(getFieldValue( 'x_catID' )));

	doVivaChangePage( varr );
} // doVivaSearchCategory

function doVivaSearchCompany(e) {
	if (!e) e = window.event;
	if ( e && e.preventDefault ) e.preventDefault();
	if ( e && e.cancelBubble ) e.cancelBubble();
	showLoading( 'viva_loading', true, "/art/loading_small.gif" ); 

	var varr = [];
	varr.push( 'x_action=search' );
	varr.push( 'x_type=company' );
	varr.push( 'x_profileCode=' + escape( getFieldValue('x_profileCode')));
	varr.push( 'x_companyID=' + escape(getFieldValue( 'x_companyID' )));

	doVivaChangePage( varr );
}	// doVivaSearchCompany

function doVivaChangePage( varr ) {
	var uri;
	var uri = window.location.protocol + '//' 
		+ window.location.host + window.location.pathname 
		+ '?' + varr.join('&')
		+ '&' + (new Date).getTime();
	// alert( 'uri: ' + uri );
	// alert( 'date: ' + (new Date).getTime() );
	window.location.href = uri;
}	// doVivaChangePage

// show divID when aflag is true
function showDiv( divID, aflag ) {
	var adiv = document.getElementById( divID )
	if ( adiv ) {
		adiv.style.visibility = (aflag) ? 'visible' : 'hidden';
	}
}

// show divID and set src to agif if true
function showLoading( imgID, aflag, agif ) {
	var aimg = document.getElementById( imgID )
	if ( aimg ) {
		aimg.style.visibility = (aflag) ? 'visible' : 'hidden';
		if (aflag) aimg.src = agif;
	}
}

function getFieldValue( idval ) {
	var aout = document.getElementById( idval ).value;
	return aout;
}	// getFieldValue

// bio / commercial disclosure, scrollable, resizeable
function popBio( aurl, awid, ahgt ) {

	var x = Math.round( (screen.width / 2)  - (awid / 2) );
	var y = Math.round( (screen.height / 3) - (ahgt / 2) );		

	var newWindow = window.open( aurl, '_blank',
			'top='+y+',left='+ x+',width='+awid+',height='+ahgt+',scrollbars=yes,status=no,resizable=yes,directories=no' );
	return false;
}		// popBio

</script>
</head>
<body>
<div ID="viva_svc_div_wrapper">

<style>
</style>
<div align="center">
<div id="viva_ce_finder_div">
<form name="viva_search_form" id="viva_search_form">
<input type="hidden" name="x_profileCode" id="x_profileCode" maxlength="50" value="{30EC7332-F2A3-4142-980E-055CC5987DAD}">
<input type="hidden" name="x_action" id="x_action" value="search">
<input type="text" name="x_query" id="x_query" maxlength="50" value="">
<input type="image" id="viva_search_button" src="/art/clear.gif" onclick="return doVivaSearchKeyword()">
<div ID="viva_search_header_text">
	Search for online CE including upcoming live/on-demand webinars and product tutorials.
	<br />All webinars and tutorials are FREE! Start earning CEU today!
</div> 

<DIV ID="viva_select_wrapper">
<div ID="x_catID_div" class="viva_select_box">
<table align="center">
<tr>
	<td align="left">
		
<span class="viva_select_label">Category:<br /></span>
<SELECT ID='x_catID' NAME='x_catID' onchange='doVivaSearchCategory()'>
<option value=''> -- view by category -- </option>
	<OPTION VALUE='152'>3D Printing Technology</OPTION>
	<OPTION VALUE='107'>Adhesives/Cements</OPTION>
	<OPTION VALUE='136'>Air Abrasion</OPTION>
	<OPTION VALUE='133'>Anesthesia</OPTION>
	<OPTION VALUE='159'>Artificial Intelligence and Advanced Technologies</OPTION>
	<OPTION VALUE='99'>CAD/CAM Technology and Materials</OPTION>
	<OPTION VALUE='141'>California Required Classes</OPTION>
	<OPTION VALUE='118'>Caries Infection/Detection</OPTION>
	<OPTION VALUE='160'>Cone Beam CT</OPTION>
	<OPTION VALUE='149'>COVID-19</OPTION>
	<OPTION VALUE='100'>Crown/Bridge/Veneers/Indirect</OPTION>
	<OPTION VALUE='144'>Cybersecurity</OPTION>
	<OPTION VALUE='81'>Dental Hygiene</OPTION>
	<OPTION VALUE='123'>Dental Photography</OPTION>
	<OPTION VALUE='135'>Dental Stem Cells</OPTION>
	<OPTION VALUE='110'>Dentures</OPTION>
	<OPTION VALUE='96'>Digital Imaging</OPTION>
	<OPTION VALUE='101'>Digital Impression</OPTION>
	<OPTION VALUE='102'>Direct Restoratives</OPTION>
	<OPTION VALUE='132'>Drug and Alcohol Addiction</OPTION>
	<OPTION VALUE='78'>Endodontics</OPTION>
	<OPTION VALUE='106'>Equipment Large</OPTION>
	<OPTION VALUE='105'>Equipment Small</OPTION>
	<OPTION VALUE='79'>Ergonomics</OPTION>
	<OPTION VALUE='128'>Finishing and Polishing</OPTION>
	<OPTION VALUE='129'>Geriatric Dentistry</OPTION>
	<OPTION VALUE='131'>Handpieces/Burs</OPTION>
	<OPTION VALUE='147'>HIPAA</OPTION>
	<OPTION VALUE='142'>Holistic and Homeopathic</OPTION>
	<OPTION VALUE='82'>Implants</OPTION>
	<OPTION VALUE='114'>Impressions Making (Traditional)</OPTION>
	<OPTION VALUE='83'>Infection Control</OPTION>
	<OPTION VALUE='124'>Isolation Protocol</OPTION>
	<OPTION VALUE='115'>Laboratory/Technicians</OPTION>
	<OPTION VALUE='122'>Lasers</OPTION>
	<OPTION VALUE='150'>Medical Emergencies</OPTION>
	<OPTION VALUE='112'>Minimal Invasive Dentistry</OPTION>
	<OPTION VALUE='154'>Occlusion</OPTION>
	<OPTION VALUE='95'>Oral Medicine</OPTION>
	<OPTION VALUE='92'>Oral Surgery</OPTION>
	<OPTION VALUE='84'>Orthodontics</OPTION>
	<OPTION VALUE='127'>Orthodontics (Digital)</OPTION>
	<OPTION VALUE='116'>OSHA/HIPAA</OPTION>
	<OPTION VALUE='120'>Pain Control</OPTION>
	<OPTION VALUE='137'>Patient Management</OPTION>
	<OPTION VALUE='103'>Pediatric Dentistry</OPTION>
	<OPTION VALUE='85'>Periodontics</OPTION>
	<OPTION VALUE='153'>Pharmacology</OPTION>
	<OPTION VALUE='151'>Practice Design</OPTION>
	<OPTION VALUE='86'>Practice Management</OPTION>
	<OPTION VALUE='94'>Preventative Therapy</OPTION>
	<OPTION VALUE='121'>Public Health</OPTION>
	<OPTION VALUE='104'>Radiology</OPTION>
	<OPTION VALUE='108'>Removable Appliances</OPTION>
	<OPTION VALUE='138'>Sedation</OPTION>
	<OPTION VALUE='117'>Sleep Medicine</OPTION>
	<OPTION VALUE='157'>Special Care</OPTION>
	<OPTION VALUE='161'>Substance Abuse</OPTION>
	<OPTION VALUE='145'>Teledentistry</OPTION>
	<OPTION VALUE='109'>Temporization</OPTION>
	<OPTION VALUE='93'>Uncategorized</OPTION>
	<OPTION VALUE='126'>Utility Room</OPTION>
	<OPTION VALUE='158'>Wellness Dentistry</OPTION>
	<OPTION VALUE='111'>Whitening</OPTION>
	<OPTION VALUE='119'>Work Environment and Law</OPTION>
</SELECT>

</td>
</tr>
</table>
</div>	<!-- x_catID_div  viva_select_box -->
<div ID="x_companyID_div" class="viva_select_box">
<table align="center">
<tr>
	<td align="left">
		
<span class="viva_select_label">Company Sponsor:<br /></span>
<SELECT ID='x_companyID' NAME='x_companyID' onchange='doVivaSearchCompany()'>
<option value=''> -- view by company -- </option>
	<OPTION VALUE='182'>AdDent</OPTION>
	<OPTION VALUE='14'>A-Dec</OPTION>
	<OPTION VALUE='51'>Air Techniques</OPTION>
	<OPTION VALUE='196'>Biotech Dental</OPTION>
	<OPTION VALUE='115'>BrandMax</OPTION>
	<OPTION VALUE='213'>California Dental Arts</OPTION>
	<OPTION VALUE='195'>Candid</OPTION>
	<OPTION VALUE='222'>Carestream Dental</OPTION>
	<OPTION VALUE='165'>Cellerant</OPTION>
	<OPTION VALUE='89'>Centrix</OPTION>
	<OPTION VALUE='216'>CephX</OPTION>
	<OPTION VALUE='223'>Cocolab</OPTION>
	<OPTION VALUE='30'>COLTENE</OPTION>
	<OPTION VALUE='193'>Compliance Training Partners</OPTION>
	<OPTION VALUE='188'>Convergent Dental</OPTION>
	<OPTION VALUE='139'>Cranberry</OPTION>
	<OPTION VALUE='52'>Dental Advisor</OPTION>
	<OPTION VALUE='203'>Dental Sleep Solutions</OPTION>
	<OPTION VALUE='28'>DENTALEZ</OPTION>
	<OPTION VALUE='181'>DEXIS</OPTION>
	<OPTION VALUE='214'>Digital Doc</OPTION>
	<OPTION VALUE='103'>DMG America</OPTION>
	<OPTION VALUE='204'>Dynamic Abutment Solutions</OPTION>
	<OPTION VALUE='218'>EMS Dental</OPTION>
	<OPTION VALUE='7'>GC America</OPTION>
	<OPTION VALUE='116'>GLO Science</OPTION>
	<OPTION VALUE='96'>GUM</OPTION>
	<OPTION VALUE='179'>HealthFirst</OPTION>
	<OPTION VALUE='215'>Incisive Technologies</OPTION>
	<OPTION VALUE='60'>Ivoclar</OPTION>
	<OPTION VALUE='220'>KometaBio</OPTION>
	<OPTION VALUE='25'>Kulzer</OPTION>
	<OPTION VALUE='58'>Kuraray Noritake</OPTION>
	<OPTION VALUE='192'>Listerine</OPTION>
	<OPTION VALUE='101'>Microcopy</OPTION>
	<OPTION VALUE='100'>Midmark Dental</OPTION>
	<OPTION VALUE='209'>Millennium Dental Technologies</OPTION>
	<OPTION VALUE='73'>NSK America</OPTION>
	<OPTION VALUE='208'>Perimetrics</OPTION>
	<OPTION VALUE='68'>Pierrel S.p.A.</OPTION>
	<OPTION VALUE='27'>Premier Dental</OPTION>
	<OPTION VALUE='64'>Pulpdent</OPTION>
	<OPTION VALUE='221'>Rapid Shape</OPTION>
	<OPTION VALUE='205'>Rectangle Health</OPTION>
	<OPTION VALUE='202'>ROE Dental Lab</OPTION>
	<OPTION VALUE='26'>SDI</OPTION>
	<OPTION VALUE='33'>Septodont</OPTION>
	<OPTION VALUE='108'>Shofu Dental</OPTION>
	<OPTION VALUE='210'>Solmetex</OPTION>
	<OPTION VALUE='3'>Solventum (formerly 3M Health Care)</OPTION>
	<OPTION VALUE='212'>SOTA Cloud</OPTION>
	<OPTION VALUE='74'>SS White</OPTION>
	<OPTION VALUE='200'>Stabili-Teeth</OPTION>
	<OPTION VALUE='185'>Sunbit</OPTION>
	<OPTION VALUE='50'>Tokuyama Dental America</OPTION>
	<OPTION VALUE='224'>uLab Systems</OPTION>
	<OPTION VALUE='34'>Viva Learning</OPTION>
	<OPTION VALUE='217'>vVardis</OPTION>
	<OPTION VALUE='172'>Young Innovations</OPTION>
</SELECT>

</td>
</tr>
</table>
</div>  	<!-- x_companyID_div  viva_select_box -->
<div style="clear:both"></div>
</div>		<!-- viva_select_wrapper -->

<div ID="viva_search_footer_available">
	<b>Available online classes:</b> 	<!-- ======== -->
17 upcoming webinars;&nbsp;1302 on-demand;&nbsp;267 product tutorials
</div>	<!-- viva_search_footer_available -->
<div ID="viva_search_footer_results"> <!-- ======================================== -->
	
	Use Viva CE Finder above to search complete library.
	
</div>		<!-- viva_search_footer_results -->
</form>
<div ID="viva_loading_div"><img src="/art/loading_small.gif" width="16" height="16" alt="" ID="viva_loading"></div>
</div>	<!-- viva_ce_finder_div -->
</div>	<!-- center -->

	
<!-- ====================================================================================== -->
<!-- FREE PARTICIPATORY ONLINE CE -->
<!-- ====================================================================================== -->

		<table width="100%" cellspacing="0" cellpadding="0">
		<tr>
			<td class="ptitleprefix" bgcolor="#FF0000"><img src="art/clear.gif" width="1" height="25" alt=""></td>
			<td>
				<span class="psubtitleblack">Upcoming Live Webinar Schedule</span>
				<a name="viva_webinars">&nbsp;</a>
			</td>
		</tr>
		<tr>
			<td colspan=2><div class="graybar"><img src="art/clear.gif" width="1" height="1" alt=""></div></td>
		</tr>
		</table>		
<style>
.viva_noresults {
	margin: 20px;
}
</style>

		<br>
		<b><span style="color:red">Reserve Your Seat Now!</span></b>
		<!-- Earn participatory CE credits from Viva Learning&trade; online webcasts.  -->

<!-- ==================================================================  -->
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5365" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5365.20260529170426921.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5365" target="_blank"><b>Periodontitis Decoded: AAP Classification, Communication, and Customized Care</b></a>
				<br /><b>Presenter: Shelley Brown, MEd, BSDH, AS, RDH, FADHA</b>
				<br /><b>Sponsor: GUM</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">9/22/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">9/22/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5365" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Mastering the complexities of periodontal disease requires a seamless bridge between diagnostic precision and patient-centered execution. This case-based CE webinar is designed to demystify the AAP Periodontal Classification System, transforming it from a diagnostic checklist into a powerful framework for clinical decision-making.

Participants will engage in the practical application of staging and grading, learning how to translate clinical findings directly into highly customized, evidence-based treatment plans. Beyond the probe depths, we will explore the latest modalities in non-surgical periodontal therapy (NSPT), advanced biofilm management strategies, and the science behind individualized homecare recommendations.

Through guided, interactive case walkthroughs, you will apply these concepts to real-world clinical scenarios, sharpening your diagnostic ability and treatment confidence. Finally, because the best treatment plan only works if the patient partners with you, the course concludes with actionable Motivational Interviewing (MI) techniques. You will leave equipped to elevate your patient communication, break down barriers to treatment acceptance, and inspire long-term homecare compliance.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://sunstarlearning.com/member/bio_popup.asp?x_classID=5365#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5398" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5398.20260804220800902.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5398" target="_blank"><b>Creating a Culture of Safe Dental Water: Evidence-based Strategies for Compliance and Patient Safety</b></a>
				<br /><b>Presenter: Dr. David Reznik</b>
				<br /><b>Sponsor: Solmetex</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">9/23/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">9/23/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5398" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Dental unit waterlines remain one of the most overlooked infection prevention challenges in dentistry. While biofilm forms naturally in every dental waterline system, inadequate waterline management can compromise patient safety, increase regulatory risk, and expose practices to unnecessary liability.  Presented by the President of the Georgia Board of Dentistry, who championed the development of Georgia’s Dental Unit Waterline Rule, this CE webinar provides practical, evidence-based guidance for building a comprehensive waterline management program that supports long-term compliance and consistent clinical outcomes. Participants will gain insight into emerging regulatory expectations, proven strategies for sustainable waterline safety, and the key elements of a successful program that protects patients while reducing risk. Whether building a new program or strengthening an existing one, attendees will leave with practical insights to help create a lasting culture of safe dental water.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://solmetex.com//member/bio_popup.asp?x_classID=5398#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5384" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5384.20260702154529812.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5384" target="_blank"><b>New Materials and Technologies Along with Fusion of Digital and Analog Workflows Can Enhance Your Restorative Practice</b></a>
				<br /><b>Presenter: Dr. Bob Lowe</b>
				<br /><b>Sponsor: Premier Dental</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">9/24/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">9/24/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5384" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Improvement in materials and technologies make it possible for all dentists to expand on direct restorative services they provide for their patients and improve indirect restorative workflows for difficult aesthetic cases. This CE webinar will discuss the fusion of digital and analog workflows to enhance predictability and patient satisfaction.  Step-by-step case review will highlight the individual procedural elements to improve aesthetic and functional outcomes of your most challenging cases.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://premierdentallearning.com/member/bio_popup.asp?x_classID=5384#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5386" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5386.20260713155530594.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5386" target="_blank"><b>Zirconia Reimagined</b></a>
				<br /><b>Presenter: Dr. Edward McLaren</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/5/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/5/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5386" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Join Dr. Ed McLaren for an in-depth exploration of the latest advancements in next-generation zirconia materials and restorative workflows. Discover how recent innovations in zirconia technology are redefining esthetics, efficiency, and clinical performance through advanced material engineering. Learn how an optimized microstructure delivers exceptional translucency—even with accelerated firing protocols—while maintaining high flexural strength and lifelike optical properties that closely mimic natural dentition.

This CE webinar will examine the complete restorative workflow, from digital design and material selection to milling, sintering, characterization, and final finishing. In addition, Dr. McLaren will review evidence-based preparation designs and cementation protocols that optimize restoration longevity, fit, and esthetic outcomes across a wide range of clinical indications, from minimally invasive veneers to full-arch zirconia restorations. Attendees will gain practical insights they can immediately apply to improve efficiency, predictability, and patient satisfaction in ever
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://IVOCLARLEARNING.COM/member/bio_popup.asp?x_classID=5386#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5410" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5410.20260828163506586.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5410" target="_blank"><b>Zen and the Art of Provisionals: From Single Units to Veneers</b></a>
				<br /><b>Presenter: Dr. Joshua Austin</b>
				<br /><b>Sponsor: Pulpdent</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">10/6/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">10/6/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5410" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		We have all had the experience of a painful crown delivery appointment. The pain isn’t referring to the patient’s experience...it’s referring to ours! As we grind on the interproximal contacts and the occlusal surfaces, we casually blame the laboratory: "They left it fat and high again!" Unfortunately, most of the time we need to turn our criticisms inward and recognize the provisional is most often the problem. It becomes an afterthought in our indirect restoration appointment, but it's incredibly important to the restorative process. Whether it be a single unit or 12 veneers, we need to be able to fabricate excellent provisionals. This CE webinar will discuss workflows to make the provisional process a breeze.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://pulpdentlearning.com/member/bio_popup.asp?x_classID=5410#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5408" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5408.20260824182812233.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5408" target="_blank"><b>Enamel Opacities Simplified: Digital Diagnosis and Modern Minimally Invasive Solutions</b></a>
				<br /><b>Presenter: Dr. Troy Schmedding, DDS, AACD</b>
				<br /><b>Sponsor: DMG America</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">10/7/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">10/7/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5408" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Enamel opacities - white spot lesions, fluorosis, trauma, and MIH - complicate diagnosis and treatment. This CE webinar offers a modern, simplified approach using transillumination, digital workflows, and updated materials to assess lesion depth and select the right treatment, including resin infiltration. Case examples cover expectation management and efficient, predictable outcomes - helping dentists deliver minimally invasive esthetic care with confidence and consistency.

					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://dmglearning.com/member/bio_popup.asp?x_classID=5408#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5419" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5419.20260908210733551.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5419" target="_blank"><b>Beyond Shape: Characterization and Texture in Direct Composite Veneers</b></a>
				<br /><b>Presenter: Dr. Drew Ballard</b>
				<br /><b>Sponsor: Tokuyama Dental America</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/12/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/12/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5419" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Creating a beautiful direct composite veneer is about more than achieving the right shape and shade. The details that ultimately make a restoration feel natural are often found in the final stages: surface texture, characterization, anatomy, light reflection, and the subtle imperfections that allow the dentistry to blend seamlessly with the surrounding dentition. In this CE webinar, Dr. Drew Ballard will share his approach to characterization and texture in direct composite resin veneers, demonstrating how he takes a restoration from simply well-shaped to natural and lifelike. Attendees will gain a deeper understanding of how intentional surface anatomy and characterization influence the way composite interacts with light, along with practical techniques that can be incorporated into everyday anterior composite cases. The goal is not to create a “perfect” tooth—it is to create dentistry that disappears.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://tokuyamadentallearning.com/member/bio_popup.asp?x_classID=5419#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5414" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5414.20260828172702495.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5414" target="_blank"><b>Maximizing Dental Suction and Safety: A New Approach to Amalgam Separation</b></a>
				<br /><b>Presenter: Dr. Marie Fluent</b>
				<br /><b>Sponsor: Air Techniques</b>
				<table>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">10/13/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						8:30 PM&nbsp;ET					
						&nbsp;&nbsp;	
						5:30 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">10/14/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:30 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5414" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		This one-hour CE webinar introduces a revolutionary, filter-free amalgam separation system designed to operate independently of your central vacuum. Participants will explore how bypassing the central vacuum optimizes aerosol capture and maintains peak suction performance without clogging from prophylaxis paste. The webinar highlights critical infection control advantages, including the reduction of saliva, blood, and contaminated aerosols at the clinical site, and enhances operator visualization and patient comfort. Additionally, attendees will learn how this technology lowers amalgam recycling costs and prevents toxic waste from entering municipal water systems and supports environmental sustainability.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://airtechniqueslearning.com/member/bio_popup.asp?x_classID=5414#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5415" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5415.20260901150718474.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5415" target="_blank"><b>Highly Esthetic Tooth and Implant-supported Restorations: An Update on the Latest Materials, Workflows, and Techniques for 2026</b></a>
				<br /><b>Presenter: Dr. Julian Conejo</b>
				<br /><b>Sponsor: Kuraray Noritake</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">10/15/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">10/15/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5415" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		A step by step digital workflow to improve success rates on single and multiple-unit tooth and implant restorations will be presented. The main objective of this CE webinar is to show how treatment time optimization and better clinical outcomes are possible with the implementation of digital tools. This webinar will show how to collect patient’s initial data to create the “Digital Clone”, discussing key points from photography setups to intraoral scanning tips and tricks for better communication with the dental laboratory. Design and fabrication of highly esthetic provisional and definitive restorations with 3D printed and milled material options will be explained to improve clinical efficiency on tooth and implant-supported restorations.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://kuraraydentallearning.com/member/bio_popup.asp?x_classID=5415#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5407" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5407.20260820175151380.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5407" target="_blank"><b>Biofilm Management in Modern Periodontal and Peri-Implant Therapy</b></a>
				<br /><b>Presenter: Dr. Andrea Ravidà</b>
				<br /><b>Sponsor: EMS Dental</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/19/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">10/19/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5407" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Modern periodontal and peri-implant therapy is increasingly guided by biologically driven, minimally invasive principles aimed at effective biofilm disruption while preserving hard and soft tissues. The integration of piezoelectric instrumentation and air-polishing technologies allows clinicians to tailor biofilm management strategies according to the specific clinical indication.

This CE webinar will describe the application of thin piezoelectric instrumentation for minimally invasive non-surgical periodontal therapy. The role of subgingival air polishing in the management of peri-implant mucositis will be discussed, with an emphasis on effective biofilm disruption while preserving implant surface integrity. In more advanced peri-implant disease, supra- and submucosal air-polishing approaches will be illustrated as part of a structured therapeutic protocol.

Through clinical cases and protocol-based workflows, the webinar will demonstrate how the appropriate selection and integration of these technologies, guided by biological rationale and disease severity, can enhance precision, tissue preservation, and long-term periodontal and peri-implant stability.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://ems-dental.com/en-us/member/bio_popup.asp?x_classID=5407#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5412" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5412.20260826190816851.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5412" target="_blank"><b>When Orthodontics Meets Aesthetics: Technology Shaping the Future of Cosmetic Dentistry</b></a>
				<br /><b>Presenter: Dr. Joseph Vargo and Dr. Stephen Shaw</b>
				<br /><b>Sponsor: Solventum (formerly 3M Health Care)</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">10/21/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">10/21/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5412" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Two colleagues discuss recent advancements in technology-driven approaches to moving and reshaping teeth.  Direct-printed clear aligner therapy is being adopted by a growing number of practitioners in both orthodontic and general practice settings.  Dr. Vargo, a seasoned orthodontist, shares how printed aligners have influenced his daily treatment decisions and how this category of appliance differs from thermoformed systems currently available.  Dr. Shaw, a general dentist of 25 years who recently incorporated printed aligner therapy into his practice, discusses the clinical outcomes he has observed.  Together they review how they evaluate which cases carry a high probability of success and how they approach limiting treatment times and revisions.  They also address referral relationships between general practice and orthodontics, and a team-based approach to case generation.

Dr. Shaw will also cover minimally invasive cosmetic veneer technique using a custom, digitally designed 3D-printed matrix to injection mold chairside composite veneers - a technique he has used for nearly a decade.  He will review the current generation of this matrix technology and discuss workflow considerations for no-prep and minimal-prep composite veneers, including factors relevant to clinicians new to the technique.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://3mdentallearning.com/member/bio_popup.asp?x_classID=5412#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5367" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5367.20260602195436828.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5367" target="_blank"><b>From Overwhelm to Comfort: Creating Sensory-Friendly Dental Environments</b></a>
				<br /><b>Presenter: Jeannette Diaz-Olivera, DHSc, MPH, RDHAP, FADHA</b>
				<br /><b>Sponsor: GUM</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">10/22/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">10/22/26</td>
					<td class="bdy">&nbsp;&nbsp;
						11:00 PM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5367" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Dental fear and anxiety are among the most common reasons patients delay or avoid oral healthcare. The dental environment is filled with sensory stimuli, including bright lights, unfamiliar sounds, smells, tastes, and touch sensations that can contribute to distress and discomfort. For individuals who are neurodivergent, have intellectual or developmental disabilities, have experienced trauma, or experience heightened anxiety, sensory processing differences may further impact their ability to tolerate dental treatment.

This CE webinar introduces dental professionals to the role of sensory processing in the patient experience. It explores evidence-based sensory adaptations that can reduce anxiety, improve cooperation, and support more positive dental visits. Participants will learn practical, low-cost strategies to create a more sensory-friendly clinical environment and enhance patient-centered care for individuals across the lifespan.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://sunstarlearning.com/member/bio_popup.asp?x_classID=5367#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5421" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5421.20260909213347981.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5421" target="_blank"><b>Smarter Smile Design: Align, Whiten, and Restore</b></a>
				<br /><b>Presenter: Dr. Nicholas Garcia</b>
				<br /><b>Sponsor: uLab Systems</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">11/2/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">11/3/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5421" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		In this CE webinar, join Dr. Nicholas Garcia for a practical discussion on integrating clear aligners into everyday esthetic dentistry—particularly for patients considering whitening, veneers, or other cosmetic improvements. Using a scan-first approach, Dr. Garcia will demonstrate how he evaluates tooth position, spacing, and occlusion before developing a treatment plan. Attendees will learn how to determine when to align, when to restore, and when combining treatments may create a more conservative and predictable path to the desired esthetic outcome. The webinar will provide a straightforward framework for recognizing anterior esthetic aligner opportunities, sequencing complementary services, and confidently presenting comprehensive treatment options to patients.

					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://https://www.ulabsystems.com//member/bio_popup.asp?x_classID=5421#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5389" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5389.20260723175117197.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5389" target="_blank"><b>Simplifying Veneer Cementation: Real-World Solutions for Predictable Delivery</b></a>
				<br /><b>Presenter: Dr. Jason Olitsky</b>
				<br /><b>Sponsor: Ivoclar</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">11/16/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">11/17/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5389" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Porcelain veneer cementation is one of the most technique-sensitive stages of aesthetic treatment. In this one-hour CE webinar, Dr. Jason Olitsky presents a practical, step-by-step approach to delivering veneer cases with greater confidence and predictability. The webinar will review the critical stages of veneer try-in and cementation, including provisional removal, bleeding control, isolation, color evaluation, porcelain preparation, seating, cement cleanup, finishing, and occlusal adjustment. Real-world challenges such as show-through, tight contacts, incomplete seating, poor fit, exposed margins, and open gingival embrasures will also be discussed.  Participants will leave with practical strategies they can immediately apply to simplify veneer delivery and improve aesthetic outcomes.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://IVOCLARLEARNING.COM/member/bio_popup.asp?x_classID=5389#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5385" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5385.20260702162927884.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5385" target="_blank"><b>Light, Bond, Restore: Optimizing Adhesives, Composites, and Curing Protocols for Long-Term Clinical Success</b></a>
				<br /><b>Presenter: Dr. Sam Simos</b>
				<br /><b>Sponsor: Premier Dental</b>
				<table>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">11/19/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Fri&nbsp;</td>
					<td class="bdy">11/20/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5385" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Successful direct restorations require more than selecting a composite and placing it into a preparation. Long-term clinical success is dependent upon understanding the complex relationship between adhesive systems, restorative materials, and light-curing technology. Advances in universal adhesives, bulk-fill and nanohybrid composites, antimicrobial restorative materials, and high-output LED curing lights have provided clinicians with powerful tools to improve efficiency and predictability. However, improper material selection or curing protocols can compromise polymerization, bond durability, marginal integrity, esthetics, and restoration longevity.

This evidence-based CE webinar reviews the science behind contemporary adhesive dentistry and composite placement while providing practical clinical protocols that can be immediately implemented in everyday practice. Through clinical cases, current research, and real-world restorative workflows, participants will learn how to maximize restorative performance by optimizing the interaction between adhesives, composites, and curing lights.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://premierdentallearning.com/member/bio_popup.asp?x_classID=5385#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5413" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5413.20260826191538728.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5413" target="_blank"><b>Taking a BITE Out of Periodontal Disease: Unmasking Malocclusion's Periodontal Impact</b></a>
				<br /><b>Presenter: Dr. Kelly Tanner, PhD, RDH</b>
				<br /><b>Sponsor: Young Innovations</b>
				<table>
				<tr>
					<td class="bdy">Wed&nbsp;</td>
					<td class="bdy">12/9/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Thu&nbsp;</td>
					<td class="bdy">12/10/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5413" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		With 75% of adults experiencing malocclusion and 47% facing periodontitis, understanding their connection is crucial for dental professionals. Dr. Kelly Tanner will guide you through the bidirectional impact of these conditions and help you discover effective strategies for concurrently managing hard and soft tissue challenges. This CE webinar will equip you with the knowledge to develop individualized treatment plans addressing multiple etiological factors, enabling you to provide more effective care for patients facing these interrelated dental health issues.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://https://younginnovations.com//member/bio_popup.asp?x_classID=5413#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
				
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5422" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5422.20260914164351676.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"><br clear=all /></a><div class="earnceu">1 CE Credit</div>
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5422" target="_blank"><b>CBCT Interpretation Essentials: What’s Normal and What’s Not</b></a>
				<br /><b>Presenter: Dr. Brian Ross</b>
				<br /><b>Sponsor: Air Techniques</b>
				<table>
				<tr>
					<td class="bdy">Mon&nbsp;</td>
					<td class="bdy">12/14/26  </td>
					<td class="bdy">&nbsp;&nbsp;	
						7:00 PM&nbsp;ET					
						&nbsp;&nbsp;	
						4:00 PM&nbsp;PT
					</td>
				</tr>
				<tr>
					<td class="bdy">Tue&nbsp;</td>
					<td class="bdy">12/15/26</td>
					<td class="bdy">&nbsp;&nbsp;
						0:00 AM&nbsp;UTC
					</td>
				</tr>
				<tr>
					<td class="bdy" colspan=3>
				CE Credits: 1 Interactive CEU
				<br /><a href="http://VivaLearning.com/member/registerlive.asp?x_source=DENTREK&x_classID=5422" target="_blank"><b>Reserve Your Seat Now &raquo;</b></a>
					</td>
				</tr>
				</table>
			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this webinar)</span>
		<br clear=all />
		Understanding the difference between normal and abnormal symmetry is often the strategy employed by experts for imaging review. In CBCT imaging there is almost always unintended areas captured in the image that the practitioner may or may not be aware of how to interpret. This CE webinar aims to give strategy and reason for how to navigate 3D imaging review. Example cases will be shown where 3D imaging shines new light where clinical exam or 2D imaging alone is not enough. This webinar is designed for general dentists and specialists to improve their skills in detection and early intervention of pathology encountered in dental imaging. CBCT technology allows more accurate diagnosis and an increased level of patient care than 2D imaging alone.
					<br clear=all />
				</p>
		
		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://airtechniqueslearning.com/member/bio_popup.asp?x_classID=5422#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		<hr size=1 />
		
	
<!-- ====================================================================================== -->
<!-- ON DEMAND ONLINE CE -->
<!-- ====================================================================================== -->

		<table width="100%" cellspacing="0" cellpadding="0">
		<tr>
			<td class="ptitleprefix" bgcolor="#FF0000"><img src="art/clear.gif" width="1" height="25" alt=""></td>
			<td>
				<span class="psubtitleblack">On-Demand CE Webinars</span>
				<a name="viva_ondemand">&nbsp;</a>
			</td>
		</tr>
		<tr>
			<td colspan=2><div class="graybar"><img src="art/clear.gif" width="1" height="1" alt=""></div></td>
		</tr>
		</table>		

		<br />
		<b><span style="color:red">Earn Free Self-Study CEU</span>&nbsp;<span style="color:gray">Learn on your schedule.  Anytime, anywhere.</span></b>

		<!-- Earn participatory CE credits from Viva Learning&trade; online webcasts.  -->

			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5400" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5400.20260807174553143.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5400" target="_blank"><b>Not Just the Water: Winning the Battle Against Dental Unit Biofilm</b></a>
				<br /><b>Presenter: Amanda Hill, BSDH, RDH CDIPC</b>
				<br /><b>Sponsor: Midmark Dental</b>
				<br />Released: 	9/16/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5400" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Dental unit waterlines remain one of the most overlooked infection prevention challenges in dentistry, yet contaminated water can have serious consequences for both patients and dental teams. This engaging CE webinar separates fact from fiction while giving participants practical, evidence-based strategies they can implement immediately. We'll explore how biofilm forms, why it can be so difficult to eliminate, and what current research tells us about testing, treatment, maintenance, and documentation. You'll also discover how equipment design can play a role in reducing biofilm formation, including newer delivery systems engineered to minimize stagnant water and simplify long-term waterline maintenance. Whether you're just getting started or refining an existing waterline program, you'll leave with a realistic roadmap for keeping your dental unit waterlines clean, compliant, and working for you—not against you.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://midmarkdentallearning.com/member/bio_popup.asp?x_classID=5400#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5371" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5371.20260604161507406.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5371" target="_blank"><b>Minimally Invasive Implant Maintenance:  A Confident, Modern Approach to Implant Preservation</b></a>
				<br /><b>Presenter: Karen Davis, RDH, BSDH</b>
				<br /><b>Sponsor: EMS Dental</b>
				<br />Released: 	9/10/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5371" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Implant maintenance doesn't need to feel risky or uncertain. This CE webinar is designed to replace hesitation with clarity, confidence, and protocols to preserve implants and prevent disease initiation. Grounded in current evidence and minimally invasive principles, the webinar helps clinicians protect implant investments, prevent complications, and standardize care.  Attendees will be able to appraise the science and benefits of Guided Biofilm Therapy for professional implant maintenance and appraise benefits of adjunctive technologies patients and clinicians value for implant preservation.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://ems-dental.com/en-us/member/bio_popup.asp?x_classID=5371#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5401" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5401.20260812151707486.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5401" target="_blank"><b>Top Infection Control Violations of 2026</b></a>
				<br /><b>Presenter: Dr. Karson Carpenter</b>
				<br /><b>Sponsor: Compliance Training Partners</b>
				<br />Released: 	9/9/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5401" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		This one-hour CE webinar is presented by Karson L. Carpenter D.D.S., president of Compliance Training Partners, and will review top infection control violations seen over the past year. The webinar will allow participants to see areas in which they may be vulnerable to citation and fine and provide practical solutions for preventing them. Participants will receive access to a detailed infection control compliance audit application that will allow them to evaluate their facility and formulate a plan for achieving full compliance.

					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://compliancetrainingpartners.com/member/bio_popup.asp?x_classID=5401#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5395" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5395.20260730195910716.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5395" target="_blank"><b>Same-Day Digital Dentures: A Live Clinical Case Demonstration</b></a>
				<br /><b>Presenter: Dr. Nitish Surathu and Dr. Neeraj Surathu</b>
				<br /><b>Sponsor: Rapid Shape</b>
				<br />Released: 	9/8/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5395" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		This CE webinar provides a comprehensive overview of the complete digital denture workflow, from patient evaluation and intraoral scanning to CAD design, 3D printing, post-processing, and final delivery. Through live demonstrations and practical clinical guidance, participants will learn how to identify appropriate cases for digital dentures, capture accurate digital impressions, design dentures using CAD software, and prepare files for 3D printing. The webinar also explores validated printing materials, finishing protocols, and chairside delivery techniques, equipping clinicians with the knowledge to incorporate an efficient, predictable digital denture workflow into everyday practice.

					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://rapidshape3d.com//member/bio_popup.asp?x_classID=5395#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5392" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5392.20260728153951425.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5392" target="_blank"><b>Elevating Soft-Tissue Dentistry with the 9.3-Micron CO2 Laser</b></a>
				<br /><b>Presenter: Dr. Yooson Kim</b>
				<br /><b>Sponsor: Convergent Dental</b>
				<br />Released: 	9/3/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5392" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Why send procedures out when you can treat them confidently in your own practice? With the 9.3-Micron CO2 laser, clinicians can perform a wide range of soft and osseous tissue procedures in a way that is efficient, minimally invasive, and patient-friendly.  In this CE webinar, Dr. Yooson Kim will explore how this technology supports clean, precise procedures with reduced bleeding and minimal need for sutures, while elevating the overall patient experience. Discover how incorporating these techniques can expand your scope of care with procedures like gingivectomies, frenectomies, crown lengthening, and more.

					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://convergentdentallearning.com/member/bio_popup.asp?x_classID=5392#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5388" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5388.20260721221007171.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5388" target="_blank"><b>Beyond Bonding: The Next Evolution of Restorative Dentistry</b></a>
				<br /><b>Presenter: Dr. Todd Snyder</b>
				<br /><b>Sponsor: Pulpdent</b>
				<br />Released: 	9/2/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5388" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Discover how preparation design, adhesive protocols, and bioactive restorative materials work together to create stronger, longer-lasting, more predictable restorations. Adhesive dentistry has transformed the way we restore teeth, but successful restorative treatment requires more than simply creating a strong bond. Material selection, preparation design, isolation, and an understanding of how restorative materials interact with the oral environment all play a critical role in long-term clinical success. This CE webinar explores the evolution of restorative dentistry beyond traditional adhesive concepts and examines how bioactive restorative materials can contribute to durable, predictable outcomes. Through evidence-based principles, clinical techniques, and real-world case presentations, participants will gain practical strategies for improving efficiency, reducing failures, and selecting restorative materials that support both the restoration and the surrounding tooth structure.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://pulpdentlearning.com/member/bio_popup.asp?x_classID=5388#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5376" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_5376.20260610220453107.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a><br clear=all /></a><div class="earnceu">1 CE Credit</div>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5376" target="_blank"><b>Full SPEED Ahead from STML to SPEED: Lessons Learned from Eight Years of Digital Dentistry</b></a>
				<br /><b>Presenter: Dr. Lincoln Fantaski</b>
				<br /><b>Sponsor: Kuraray Noritake</b>
				<br />Released: 	8/31/26
				<br />CE Credits: 1 CEU (Self-Study)
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=5376" target="_blank"><b>Watch On-demand Class Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this on-demand class)</span>
		<br clear=all />
		Join us for Full SPEED Ahead: From STML to SPEED - Lessons Learned from 8 Years of Digital Dentistry, a webinar exploring the evolution of multilayer zirconia and its impact on modern digital restorative workflows. This CE webinar will review how optimized milling and sintering protocols can help reduce turnaround times while maintaining esthetic and functional outcomes. Participants will gain practical strategies for implementing high-speed zirconia workflows that improve efficiency, profitability, and the patient experience. The discussion will also highlight how expanded shade options can simplify treatment planning and inventory management in a digital practice.
					<br clear=all />
				</p>

		<div>  <!-- comm disclosure / top -->
		<div style="float:left;text-align:left;margin:0px;padding:0px;"><A HREF="#" onClick="return popBio('http://kuraraydentallearning.com/member/bio_popup.asp?x_classID=5376#disclosure', 600, 450);">commercial disclosure &raquo;</a></div>
		<div style="float:right;text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<div style="clear:both"></div>
		</div>
		

		<hr size=1 />
	
	
<!-- ====================================================================================== -->
<!-- ON DEMAND PRODUCT TUTORIALS -->
<!-- ====================================================================================== -->

<!-- ================================================================== -->

		<table width="100%" cellspacing="0" cellpadding="0">
		<tr>
			<td class="ptitleprefix" bgcolor="#FF0000"><img src="art/clear.gif" width="1" height="25" alt=""></td>
			<td>
				<span class="psubtitleblack">Product Tutorials</span>
				<a name="viva_tutorials">&nbsp;</a>
			</td>
		</tr>
		<tr>
			<td colspan=2><div class="graybar"><img src="art/clear.gif" width="1" height="1" alt=""></div></td>
		</tr>
		</table>		
		
		<br/>
		<b><span style="color:red">Stay up-to-date on new products!</span></b>

	
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4358" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4358.20210803162305594.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4358" target="_blank"><b>Post-Pandemic Compliance: Update on OSHA and Bloodborne Pathogens Regulations</b></a>
				<br /><b>Presenter: Cranberry</b>
				<br /><b>Sponsor: Cranberry</b>
				<br />Released: 	8/3/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4358" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		In this podcast video, we'll be discussing post pandemic compliance and we'll also be discussing the latest updates on OSHA and bloodborne pathogens regulations. Our guest is Dr. Karson Carpenter, a practicing dentist who serves as President of Compliance Training Partners. He is an OSHA approved trainer who has for over 25 years designed educational programs to bring dental and medical facilities into compliance with governmental regulations including OSHA, HIPAA and infection control.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4315" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4315.20210421172438619.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4315" target="_blank"><b>SciCan SPEC System: Smart Instrument Reprocessing</b></a>
				<br /><b>Presenter: SciCan</b>
				<br /><b>Sponsor: SciCan</b>
				<br />Released: 	4/21/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4315" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		Smart Instrument Reprocessing begins and ends with SciCan.  Your steri-center should improve Safety, ensure Predictable results, maximize Efficiency, and maintain Compliance.  Your office can have the fastest and safest instrument processing system possible to avoid delays and interruptions in work flow and to reduce the risk of staff injury.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4398" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4398.20211004165817261.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4398" target="_blank"><b>CLEARFIL MAJESTY™ ES-2 Universal</b></a>
				<br /><b>Presenter: Kuraray Noritake</b>
				<br /><b>Sponsor: Kuraray Noritake</b>
				<br />Released: 	3/1/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4398" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		How many different shades of composite do your customers need in the posterior region? If they opt for CLEARFIL MAJESTY™ ES-2 Universal, a single shade will do the trick. The go-to solution for common posterior restorations, independent of the color of the underlying and adjacent tooth structure.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4266" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4266.20210114001801864.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4266" target="_blank"><b>OPTIM - Is Your Surface Cleaner Disinfectant Effective Against COVID-19?</b></a>
				<br /><b>Presenter: SciCan</b>
				<br /><b>Sponsor: SciCan</b>
				<br />Released: 	1/14/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4266" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		Here’s an overview video for dental offices, about how to search the EPA List-N for your surface disinfectant, using our OPTIM one-minute, one-step surface cleaner and disinfectant as an example.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4260" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4260.20210106165146614.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4260" target="_blank"><b>BRILLIANT EverGlow® Flow</b></a>
				<br /><b>Presenter: COLTENE</b>
				<br /><b>Sponsor: COLTENE</b>
				<br />Released: 	1/6/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4260" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		BRILLIANT EverGlow Flow is a flowable submicron hybrid composite that gives you both stability and flowability in one versatile material.  Appropriate for use in a wide range of indications, BRILLIANT EverGlow Flow is available in eight shades and two different needle sizes, including an extra-fine needle.  If you’re ready to upgrade your dentistry, COLTENE’s BRILLIANT EverGlow Flow is for you!
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4259" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4259.20210105232202886.jpg" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4259" target="_blank"><b>everX Flow™</b></a>
				<br /><b>Presenter: GC America</b>
				<br /><b>Sponsor: GC America</b>
				<br />Released: 	1/5/21
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4259" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		everX Flow is a short fiber-reinforced dentin replacement that provides excellent core strength and fracture resistance.  You can use it for core build-ups, substructure for endodontically-treated teeth, coronal restorations and teeth with large cavities in high stress-bearing areas, knowing that you’ll be restoring teeth in a biomimetic way and preventing crack propagation.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
			
		<p>
		<table>
		<tr>
			<td>
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4222" target="_blank"><img src="https://cdn.vivarep.com/contrib/va/classphoto/photo_4222.20201201184811121.png" alt="" width="85" height="85" border="0" hspace="5" vspace="0" align="left"></a>	
			</td>
			<td class="bdy">
				<a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4222" target="_blank"><b>ZR-Cem</b></a>
				<br /><b>Presenter: Premier Dental</b>
				<br /><b>Sponsor: Premier Dental</b>
				<br />Released: 	12/1/20
				<br /><a href="http://VivaLearning.com/member/classroom.asp?x_source=DENTREK&x_classID=4222" target="_blank"><b>Watch Product Tutorial Now &raquo;</b></a>

			</td>
		</tr>
		</table>
	
		<span style="color: #900">(No charge for this product tutorial)</span>
		<br clear=all />
		ZR-Cem is an innovative self-adhesive universal resin cement specially formulated for zirconia restorations. Dual-cured ZR-Cem enables a strong bond to all ceramic materials, dentin and enamel - ensuring superior retention and marginal integrity.
					<br clear=all />
				</p>
		
		<div style="text-align:right;margin:0px;padding:0px;"><a href="#top">top &raquo;</a></div>
		<hr size=1 />
	

</div>	<!-- viva_svc_div_wrapper -->

<script language="JavaScript">
// alert('readyState3: ' + document.readyState );

_viva_postprocess();

function _viva_postprocess () {
	if ( document.readyState != 'complete' ) {
		// alert('readyState4: ' + document.readyState );
		setTimeout( _viva_postprocess,1000 );
		return false;
	}
	// alert('readyState6: ' + document.readyState );

	var vsfca = document.getElementById( 'x_catID' );
	if (vsfca) {
		if ( vsfca.length > 2 ) {  // show if more than one element
			var vsfcadiv = document.getElementById( 'x_catID_div' );
			if ( vsfcadiv ) {
				// alert( 'found x_catID_div!!' );
				vsfcadiv.style.visibility = 'visible';
			}
		}
	}
	else {
		// alert('vsfca not found!!');
	}
	
	var vsfco = document.getElementById( 'x_companyID' );
	// alert(  'options co: ' + vsfco.length );  // # elements in select
	if (vsfco) {
		if ( vsfco.length > 2 ) {  // show if more one element
			var vsfcodiv = document.getElementById( 'x_companyID_div' );
			if ( vsfcodiv ) {
				// alert( 'found x_companyID_div!!' );
				vsfcodiv.style.visibility = 'visible';
			}
		}
	}
	else {
		// alert('vsfco not found!!');
	}

	return false;
}


// ( function () {
// 	alert('readyState2: ' + document.readyState );
// }) ();
</script>


</body>
</html>