<!--
// links , need to add in conditionals

//Conditions
if (window.location.href.indexOf("cpid=11232") > -1)
{
	cond = "<font color='#000000'>Conditions</font>";
}
else
{
	cond = "<a href='/handler.cfm?event=practice,template&cpid=11232' target='_self'>Conditions</a>";
}

//Tests
if (window.location.href.indexOf("cpid=11233") > -1)
{
	test = "<font color='#000000'>Tests</font>";
}
else
{
	test = "<a href='/handler.cfm?event=practice,template&cpid=11233' target='_self'>Tests</a>";
}

//Treatments
if (window.location.href.indexOf("cpid=11234") > -1)
{
	treat = "<font color='#000000'>Treatments</font>";
}
else
{
	treat = "<a href='/handler.cfm?event=practice,template&cpid=11234' target='_self'>Treatments</a>";
}

//Risk Factors
if (window.location.href.indexOf("cpid=11235") > -1)
{
	risk = "<font color='#000000'>Risk Factor Management</font>";
}
else
{
	risk = "<a href='/handler.cfm?event=practice,template&cpid=11235' target='_self'>Risk Factor Management</a>";
}

document.writeln(' ' + cond + ' ');
document.writeln('<br><br>');
document.writeln(' ' + test + ' ');
document.writeln('<br><br>');
document.writeln(' ' + treat + ' ');
document.writeln('<br><br>');
document.writeln(' ' + risk + ' ');
document.writeln('<br><br>');

//-->
