function fsubmit(page,ind) {
	if (ind == '+') {
		window.document.FrmResult.page.value = page + 1;
		window.document.FrmResult.submit();
		return;
	}
	window.document.FrmResult.page.value = page - 1;
	window.document.FrmResult.submit();
	return;
}
