<!--
// links , need to add in conditionals

//Patient Symposiums
if (window.location.href.indexOf("cpid=11226") > -1)
{
	sym = "<font color='#000000'>Patient Symposiums</font>";
}
else
{
	sym = "<a href='/handler.cfm?event=practice,template&cpid=11226' target='_self'>Patient Symposiums</a>";
}



//Transplantation Guide
if (window.location.href.indexOf("cpid=13151") > -1)
{
	trans = "<font color='#000000'>Transplantation Guide</font>";
}
else
{
	trans = "<a href='/handler.cfm?event=practice,template&cpid=13151' target='_self'>Transplantation Guide</a>";
}

document.writeln(' ' + sym + ' ');
document.writeln('<br><br>');
document.writeln(' ' + trans + ' ');
document.writeln('<br><br>');

//-->
