	//<!--
		function open_window(ChamberName, BGColor, FontColor)	
		{
								
			strChamberName = ChamberName
			strBGColor = BGColor
			strFontColor = FontColor
			window.open("http://portal.lawtonprinting.com/advertisingInfoRequest/advertisingInfoRequest.asp?chamberName=" + strChamberName + "&BGcolor=" + strBGColor + "&fontColor=" + strFontColor  , "_blank", "scrollbars=no, resizable=no, width=450, height=465")
									
		}
	//---------------------------------------------------------------------------------
	
		function statusBar()
		{
			//So Chamber Master won't show in the status bar.
			window.status="NW Houston Chamber of Commerce"
		}
			
	//---------------------------------------------------------------------------------
	
		function changeIframeContentToDirectory(frmSearch)
		{		
			document.frmHidden.submit();					
		}	
		
	//---------------------------------------------------------------------------------
	
		function isEmpty(str)
		{
			var strTemp;
					
			//replace leading spaces
			strTemp = str.replace(/^\s+/i, "");
					
			//replace trailing spaces		
			strTemp = strTemp.replace(/\s+$/i, "");
					
			//------------------------------------------------------------------
					
			var empty = (strTemp == null || strTemp == "" || strTemp == " ") ? true : false
			return empty
		}
// -->