function viewAllExec(strCompanyKeyword, strExecNameKeyword, bIsTickerSymbol)
{
	if (strCompanyKeyword.length != 0)
	{
		document.mainform.txtExecCompany.value = strCompanyKeyword;
		document.mainform.rdbExecCompany.value = bIsTickerSymbol		
	}
	if (strExecNameKeyword.length != 0)
	{
		document.mainform.txtExecName.value = strExecNameKeyword;	
	}
	
	document.mainform.isdisplayall.value = "1";
	document.mainform.target = "_self";
	document.mainform.submit();
	
}