<!--
// links , need to add in conditionals

//Message from the President
if (window.location.href.indexOf("cpid=11011") > -1)
{
	message = "<font color='#000000'>Message from the President</font>";
}
else
{
	message = "<a href='/handler.cfm?event=practice,template&cpid=11011' target='_self'>Message from the President</a>";
}

//Eric Marton
if (window.location.href.indexOf("cpid=11212") > -1)
{
	marton = "<font color='#000000'>Eric N. Marton</font>";
}
else
{
	marton = "<a href='/handler.cfm?event=practice,template&cpid=11212' target='_self'>Eric N. Marton</a>";
}

//Christine Sumbi
if (window.location.href.indexOf("cpid=11213") > -1)
{
	sumbi = "<font color='#000000'>Christine Sumbi</font>";
}
else
{
	sumbi = "<a href='/handler.cfm?event=practice,template&cpid=11213' target='_self'>Christine Sumbi</a>";
}

document.writeln(' ' + message + ' ');
document.writeln('<br><br>');
document.writeln(' ' + marton + ' ');
document.writeln('<br><br>');
document.writeln(' ' + sumbi + ' ');
document.writeln('<br><br>');

//-->
