function post_url(url,str,target)
{
	if(str)
	{
		var set = str.split("&");
		for(i=0;i<set.length;i++)
		{
			var arr = set[i].split("=");
			eval("document.fm."+arr[0]).value = arr[1];
		}
	}

	document.fm.target = "";
	if(target)
	{
		document.fm.target = target;
	}


	document.fm.action = url;
	document.fm.submit();
}

function paging(url,sp)
{
	document.fm.action=url;
	document.fm.target="";
	document.fm.sp.value=sp;
	document.fm.submit();
	return;
}