/**********************************************************************************
 * F I L T E R   C O N T R O L   T O O L T I P S
 **********************************************************************************/

function FilterInfo(tag)
{

	var returnVal;

	switch(tag)
	{
		case 'process' :
			returnVal='Select this option to search the <i>Roles &amp; Responsibilities</i> information ' + 
				'by process for all roles';
			break;

		case 'single' :
			returnVal='Select this option to search the <i>Roles &amp; Responsibilities</i> information ' +
				'by process for a single role';
			break;

		case 'multi' :
			returnVal='Select this option to search the <i>Roles &amp; Responsibilities</i> information ' + 
				'by process for two roles';
			break;
			
		case 'table' :
			returnVal='Select this option to display the results in the form of a table';
			break;

		case 'list' :
			returnVal='Select this option to display the results as a bulleted list';
			break;
			
		case 'execute' :
			returnVal='Click to filter the <i>Roles &amp; Responsibilities</i> information based on ' +
				'the selected search criteria';
			break;
			
		case 'selectAll' :
			returnVal='Click to select all check boxes';
			break;
		
		case 'selectNone' :
			returnVal='Click to deselect all check boxes';
			break;
	}

	return returnVal;
	
}


/**********************************************************************************
 * E X P A N D / C O L L A P S E   T O O L T I P S
 **********************************************************************************/

function CollapseInfo(tag)
{

	var returnVal;

	switch(tag)
	{
		case 'filterControl' :
			returnVal='Click to expand or collapse the <i>Search Filter</i> control';
			break;

		case 'keyControl' :
			returnVal='Click to expand or collapse the <i>Key Info</i> control';
			break;

		case 'menuControl' :
			returnVal='Click to expand or collapse the <i>Menu</i> control';
			break;

		case 'expandProcess' :
			returnVal='Click to show or hide the related subprocess items';
			break;

		case 'expandSubprocess' :
			returnVal='Click to show or hide the tasks related to this subprocess';
			break;
			
		case 'expandTask' :
			returnVal='Click to show or hide the information for this task';
			break;
			
		case 'expandLevel' :
			returnVal='Click to show or hide the information for this responsibility level';
			break;
			
	}

	return returnVal;
	
}


/**********************************************************************************
 * T A B L E   D I S P L A Y   T O O L T I P S
 **********************************************************************************/

function TableDisplay(tag)
{

	var returnVal;

	switch(tag)
	{
		case 'selectAll' :
			returnVal='Click to expand all subprocess sections';
			break;
		
		case 'selectNone' :
			returnVal='Click to collapse all subprocess sections';
			break;

	}

	return returnVal;
	
}

/**********************************************************************************
 * R O L E   D I S P L A Y   T O O L T I P S
 **********************************************************************************/

function RoleDisplay(tag)
{

	var returnVal;

	switch(tag)
	{
		case 'selectAll' :
			returnVal='Click to expand all responsibility level sections';
			break;
		
		case 'selectNone' :
			returnVal='Click to collapse all responsibility level sections';
			break;
			
		case 'link' :
			returnVal='Click to view the Homepage for this office';

	}

	return returnVal;
	
}


/**********************************************************************************
 * A D M I N   C O N T R O L   T O O L T I P S
 **********************************************************************************/

function AdminMenu(tag)
{

	var returnVal;

	switch(tag)
	{
		case 'instructions' :
			returnVal='Click to view the instructions page';
			break;

		case 'print' :
			returnVal='Click to open a printer-friendly version of the displayed information';
			break;

		case 'bookmark' :
			returnVal='Click to bookmark this page';
			break;
		
		case 'feedback' :
			returnVal='Tell us how we can improve this site';
			break;
		
	}

	return returnVal;
	
}