<!--
// links , need to add in conditionals

//Patient Education
if (window.location.href.indexOf("cpid=10993") > -1)
{
	education = "<font color='#000000'>Patient Education</font>";
}
else
{
	education = "<a href='/handler.cfm?event=practice,template&cpid=10993' target='_self'>Patient Education</a>";
}

//Patient Services
if (window.location.href.indexOf("cpid=11187") > -1)
{
	services = "<font color='#000000'>Patient Services</font>";
}
else
{
	services = "<a href='/handler.cfm?event=practice,template&cpid=11187' target='_self'>Patient Services</a>";
}

//Clinical Research Trials
if (window.location.href.indexOf("cpid=10995") > -1)
{
	trials = "<font color='#000000'>Clinical Research Trials</font>";
}
else
{
	trials = "<a href='/handler.cfm?event=practice,template&cpid=10995' target='_self'>Clinical Research Trials</a>";
}


//Patient Programs
if (window.location.href.indexOf("cpid=11189") > -1)
{
	programs = "<font color='#000000'>Patient Programs</font>";
}
else
{
	programs = "<a href='/handler.cfm?event=practice,template&cpid=11189' target='_self'>Patient Programs</a>";
}


//Contact Information
if (window.location.href.indexOf("cpid=11244") > -1)
{
	contact = "<font color='#000000'>Contact Information</font>";
}
else
{
	contact = "<a href='/handler.cfm?event=practice,template&cpid=11244' target='_self'>Contact Information</a>";
}


document.writeln(' ' + education + ' ');
document.writeln('<br><br>');
document.writeln(' ' + services + ' ');
document.writeln('<br><br>');
document.writeln(' ' + trials + ' ');
document.writeln('<br><br>');
document.writeln(' ' + programs + ' ');
document.writeln('<br><br>');
document.writeln(' ' + contact + ' ');
document.writeln('<br><br>');

//-->
