// JavaScript Document

	function kSearch(){
		var nlocation = ""
		if(document.ksearch.keywords.value != ''){
			nlocation = 'http://www.kalahari.net/cam/vsearch.asp?shop=CAM&lang=ENG&toolbar=mweb&template=KalaSearchShopResults.asp&originCountry=&prodType=%27CAM%27&pageNumber=1&pageSize=25&SearchText2=&Combo=keyword';
			nlocation = nlocation + '&SearchText=' + document.ksearch.keywords.value;
			nlocation = nlocation + '&sortID=99&sorted=99';
			window.open(nlocation);
		}
		else{
			alert('Please enter a keyword to search for.');
		}
	}


	function bSearch(){
		var nlocation = ""
		var catid = ""
		if(bsearch.categories.value != ''){
			catid = bsearch.categories.value;
		}
		else if(bsearch.types.value != ''){
			catid = bsearch.types.value;
		}
		else if(bsearch.brand.value != ''){
			catid = bsearch.brand.value;
		}
		else if(bsearch.concerns.value != ''){
			catid = bsearch.concerns.value;
		}
		else if(bsearch.products.value != ''){
			catid = bsearch.products.value;
		}
		if(catid != ''){
			nlocation = 'http://www.kalahari.net/cam/BrowseKms.asp?CategoryID1=' + catid;
			window.open(nlocation);
		}
		else{
			alert('Please select a category to browse.');
		}
	}

	function gSearch(catid){
			nlocation = 'http://www.kalahari.net/cam/BrowseKms.asp?CategoryID1=' + catid;
			window.open(nlocation);
	}
