		/*-------------------------------------------------------------------*/
		/* JAVASCRIPT														 */ 
		/*-------------------------------------------------------------------*/	
		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 submitHome()
		{			
			document.formFields.goto_app.value = "home";
			document.formFields.submit();		
		}	
		

		function submitSearchBt()
		{			
			var searchOption = parseInt(document.searchOption_form.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;;
			
		}

		
		

