﻿
// Client Side to provide mutually exclusive drop downs without postback
// on CE page, may expand client side functions in the future
function ProfDevClick()
{
document.forms[0].TabContainer1_tabSearch_ddlPersEnrich.selectedIndex = 0;
}

function PersEnrichClick()
{
document.forms[0].TabContainer1_tabSearch_ddlProfDev.selectedIndex = 0;
}
