function filterSearch()
{
	var obj = document.frmInfo;
	
	var str		= _RequestURI;
	
	str = str.replace(/&Province=[^&]*/, '');
	str = str.replace(/&City=[^&]*/, '');
	str = str.replace(/&keytwo=[^&]*/, '');
	str = str.replace(/&Auditing=[\-0-9]*/, '');
	str = str.replace(/&Area=[^&]*/, '');
	str = str.replace(/&Keyword=[^&]*/, '');
	
	if(obj.Province.value) str	= str.replace(/&keytwo=[^&]*/, '') + '&Province=' + obj.Province.value;
	if(obj.City.value) str	= str + '&City=' + obj.City.value;
	if(obj.keytwo.value) str	= str + '&keytwo=' + obj.keytwo.value;
	if(obj.Auditing.value) str	= str + '&Auditing=' + (obj.Auditing.checked ? "1" : 0);
	location 	= str;
}

function filterAct(strx)
{
	var str		= _RequestURI;
	
	str = str.replace(/&page=[\-0-9]*/, '');
	str	= str.replace(/&act=[^&]*/, '');
	str	= str.replace(/act=[^&]*&/, '');
	str	= str.replace(/act=[^&]*/, '') + '&act=' + strx;
	location 	= str;
}

function filterCategory(cid)
{
	var str		= _RequestURI;
	
	str = str.replace(/&CategoryID=[\-0-9]*/, '');
	str	= str.replace(/&CategoryID=[^&]*/, '') + '&CategoryID=' + cid;
	location 	= str;
}

function filterMode(mode)
{
	var str		= _RequestURI;
	
	str = str.replace(/&mode=[\-0-9]*/, '');
	str = str.replace(/mode=[\-0-9]*/, '');
	if(mode == 1) str	= str.replace(/&mode=[\-0-9]*/, '') + '&mode=' + mode;
	location 	= str;
}

function filterKind(kind)
{
	var str		= _RequestURI;
	
	str = str.replace(/&supply_kind=[a-z]*/, '') + '&supply_kind=' + kind;
	location 	= str;
}