<!--
// links , need to add in conditionals

//CME Opportunities
if (window.location.href.indexOf("cpid=11207") > -1)
{
	cme = "<font color='#000000'>CME Opportunities</font>";
}
else
{
	cme = "<a href='/handler.cfm?event=practice,template&cpid=11207' target='_self'>CME Opportunities</a>";
}

//Preceptorships
if (window.location.href.indexOf("cpid=11209") > -1)
{
	pre = "<font color='#000000'>Preceptorships</font>";
}
else
{
	pre = "<a href='/handler.cfm?event=practice,template&cpid=11209' target='_self'>Preceptorships</a>";
}


//Contact Information
if (window.location.href.indexOf("cpid=11269") > -1)
{
	con = "<font color='#000000'>Contact Information</font>";
}
else
{
	con = "<a href='/handler.cfm?event=practice,template&cpid=11269' target='_self'>Contact Information</a>";
}


document.writeln(' ' + cme + ' ');
document.writeln('<br><br>');
document.writeln(' ' + pre + ' ');
document.writeln('<br><br>');
document.writeln(' ' + con + ' ');
document.writeln('<br>');

//-->

