<!--
// links , need to add in conditionals

//Referral Information
if (window.location.href.indexOf("cpid=11223") > -1)
{
	ref = "<font color='#000000'>Referral Information</font>";
}
else
{
	ref = "<a href='/handler.cfm?event=practice,template&cpid=11223' target='_self'>Referral Information</a>";
}

//Clinical Research Trials
if (window.location.href.indexOf("cpid=10995") > -1)
{
	cli = "<font color='#000000'>Clinical Research Trials</font>";
}
else
{
	cli = "<a href='/handler.cfm?event=practice,template&cpid=10995' target='_self'>Clinical Research Trials</a>";
}

//CME Programs
if (window.location.href.indexOf("cpid=11207") > -1)
{
	cme = "<font color='#000000'>CME Programs</font>";
}
else
{
	cme = "<a href='/handler.cfm?event=practice,template&cpid=11207' target='_self'>CME Programs</a>";
}

//Links to Abstracts
if (window.location.href.indexOf("cpid=10998") > -1)
{
	lin = "<font color='#000000'>Links to Abstracts</font>";
}
else
{
	lin = "<a href='/handler.cfm?event=practice,template&cpid=10998' target='_self'>Links to Abstracts</a>";
}


//Affiliations
if (window.location.href.indexOf("cpid=11224") > -1)
{
	aff = "<font color='#000000'>Affiliations</font>";
}
else
{
	aff = "<a href='/handler.cfm?event=practice,template&cpid=11224' target='_self'>Affiliations</a>";
}


//Contact Information
if (window.location.href.indexOf("cpid=11243") > -1)
{
	con = "<font color='#000000'>Contact Information</font>";
}
else
{
	con = "<a href='/handler.cfm?event=practice,template&cpid=11243' target='_self'>Contact Information</a>";
}


document.writeln(' ' + ref + ' ');
document.writeln('<br><br>');
document.writeln(' ' + cli + ' ');
document.writeln('<br><br>');
document.writeln(' ' + cme + ' ');
document.writeln('<br><br>');
document.writeln(' ' + lin + ' ');
document.writeln('<br><br>');
document.writeln(' ' + aff + ' ');
document.writeln('<br><br>');
document.writeln(' ' + con + ' ');
document.writeln('<br><br>');

//-->
