function doSubmit()
{
	var objForm = document.frm;
		
	objForm.hAction.value = "search";
	objForm.action = "classifieds.asp";  	
	return true; 
}

function doPage(intPage, intCategoryID)
{
	var objForm = document.frm;
		
	objForm.hAction.value = "page";
	if(parseInt(intCategoryID) > 0)
		objForm.action = "classifieds.asp?categoryid=" + intCategoryID + "&page=" + intPage;  	
	else
		objForm.action = "classifieds.asp?page=" + intPage;  	
	objForm.submit(); 
}


