	function saveIndustryCodeField(strCodeField)
	{
		strCodeFieldName = strCodeField;
	}
	
	function storeIndustryCode(codeValue)
	{
		strCodeFieldName.value = codeValue;
		strCodeFieldName.focus();
	}

	function storeIndustryCodeNoFocus(codeValue)
	{
		strCodeFieldName.value = codeValue;
	}

	function openIndustryCodeWindow(url,attributes)
	{
		window.open(url,'',attributes)
	}
	
	function openHSCWindow(url)
	{
		window.open(url,'','width=500,height=375,resizable')
	}
	
	function openNAICSWindow(url)
	{
		window.open(url,'','width=500,height=375,resizable')
	}

