<!--
// links , need to add in conditionals

//Make an Appointment
if (window.location.href.indexOf("cpid=11228") > -1)
{
	appt = "<font color='#000000'>Make an Appointment</font>";
}
else
{
	appt = "<a href='/handler.cfm?event=practice,template&cpid=11228' target='_self'>Make an Appointment</a>";
}

//Pre-appointment Forms
if (window.location.href.indexOf("cpid=11227") > -1)
{
	forms = "<font color='#000000'>Pre-appointment Forms</font>";
}
else
{
	forms = "<a href='/handler.cfm?event=practice,template&cpid=11227' target='_self'>Pre-appointment Forms</a>";
}



document.writeln(' ' + appt + ' ');
document.writeln('<br><br>');
document.writeln(' ' + forms + ' ');
document.writeln('<br><br>');

//-->
