// index.js

function search(productCategory, productType) {
	document.frmSubmit.action = "SearchServlet";	
	document.frmSubmit.productCategory.value = productCategory;
	document.frmSubmit.productType.value = productType;
	document.frmSubmit.submit();
}

function searchByMap(productCategory, productType) {
	document.frmSubmit.action = "SearchByMapServlet";	
	document.frmSubmit.productCategory.value = productCategory;
	document.frmSubmit.productType.value = productType;
	document.frmSubmit.submit();
}

