// Author:		Colin Turner
// Date:		31 Oct 2003
// Purpose:		JavaScript for the Support Home page
//
// Change History:
// Date			Author			Comments

function viewLatest(plngContentCategoryID)
{
	// Pass the content category being viewed to latest.asp
	document.frmSupportHome.inpContentCategory.value = plngContentCategoryID;
	document.frmSupportHome.inpWithinLastMonths.value=6;
	document.frmSupportHome.action = '/support/latest.asp?referrer=Home';
	document.frmSupportHome.submit();
}