
function navigateToEmploymentOpportunities(strLocation, strCategory, strDeptId)
{
/******************************
* author:	Kelly Berger 9/7/2004
* Edits:	Gus Chan 2/27/2006 (update IT Service dept ID = 63883)
* Purpose:	Navigate the user to a job page with the appropriate filters
* Usage:	
*	- inputs (none required)
*		strLocation = location of job (72 = Northgate)
*		strCategory = type of job
*		strDeptId = department identifier (88611 = IT Services)
* 
*****************************/
	document.txtjobsearch2.cboLocation.value = strLocation;
	document.txtjobsearch2.cboJobCategory.value = strCategory;
	document.txtjobsearch2.cboDepartment.value = strDeptId
	document.txtjobsearch2.submit();
}
