		/*-------------------------------------------------------------------*/
		/* JAVASCRIPT														 */ 
		/*-------------------------------------------------------------------*/	
			
		if (document.getElementById("catg_info").value == 1)
		{
			var block_catg_info_div = document.getElementById("catg_info_div");
			block_catg_info_div.style.display = "block";	
		}
		else
		{		
			var block_catg_data_div = document.getElementById("catg_data_div");
			block_catg_data_div.style.display = "block";
		}
		
		function aboutSite()
		{
			var str = "/common_html/aboutSite.php";				
			wnd = window.open(str,"aboutSite",
					"height=630, width=820, status, top, left, resizable, scrollbars, dependent");
			wnd.focus();
		}	
		function aboutBuying()
		{
			var str = "/common_html/aboutBuying.php";				
			wnd = window.open(str,"aboutBuying",
					"height=630, width=820, status, top, left, resizable, scrollbars, dependent");
			wnd.focus();
		}
		function aboutSelling()
		{
			var str = "/common_html/aboutSelling.php";				
			wnd = window.open(str,"aboutSelling",
					"height=630, width=820, status, top, left, resizable, scrollbars, dependent");
			wnd.focus();
		}
		
		function submitSearchBt()
		{			
			//var searchOption = parseInt(document.searchOption_form.searchOption.value);
			var searchOption = parseInt(document.getElementById("searchOption").value);
			
			var searchTxt = document.getElementById("searchTxt").value;
		/*
			var title_desc_box = document.getElementById("title_desc_box").checked;
			title_desc_box = (title_desc_box == "1") ? "1" : "";
		*/
			title_desc_box = '';

			catgLevel = "";

			if (searchOption > 0)			// catg option
			{
				catgLevel = 1;
			}		
			

			searchOption = (searchOption == 0) ? "" : searchOption;
						
			location.href = "/search/search.php?searchTxt="+searchTxt+"&descSrch="
								+title_desc_box+"&mainCat="+searchOption+"&catgLevel="+catgLevel;;
			
		}


