<!--
// links , need to add in conditionals

//Current Trials
if (window.location.href.indexOf("cpid=10995") > -1)
{
	cur = "<font color='#000000'>Current Trials</font>";
}
else
{
	cur = "<a href='/handler.cfm?event=practice,template&cpid=10995' target='_self'>Current Trials</a>";
}

//Abstracts & Articles
if (window.location.href.indexOf("cpid=10998") > -1)
{
	art = "<font color='#000000'>Abstracts & Articles</font>";
}
else
{
	art = "<a href='/handler.cfm?event=practice,template&cpid=10998' target='_self'>Abstracts & Articles</a>";
}

//Our Research Team
if (window.location.href.indexOf("cpid=10997") > -1)
{
	tea = "<font color='#000000'>Our Research Team</font>";
}
else
{
	tea = "<a href='/handler.cfm?event=practice,template&cpid=10997' target='_self'>Our Research Team</a>";
}

//Enrollment Information
if (window.location.href.indexOf("cpid=10996") > -1)
{
	enr = "<font color='#000000'>Enrollment Information</font>";
}
else
{
	enr = "<a href='/handler.cfm?event=practice,template&cpid=10996' target='_self'>Enrollment Information</a>";
}

//Contact Information
if (window.location.href.indexOf("cpid=11245") > -1)
{
	con = "<font color='#000000'>Contact Information</font>";
}
else
{
	con = "<a href='/handler.cfm?event=practice,template&cpid=11245' target='_self'>Contact Information</a>";
}


document.writeln(' ' + cur + ' ');
document.writeln('<br><br>');
document.writeln(' ' + art + ' ');
document.writeln('<br><br>');
document.writeln(' ' + tea + ' ');
document.writeln('<br><br>');
document.writeln(' ' + enr + ' ');
document.writeln('<br><br>');
document.writeln(' ' + con + ' ');
document.writeln('<br><br>');

//-->
