La pregunta seguro será tonta y si intentaste realizar un anclaje con id del registro o al regresar enviar de regreso con dicho anclaje no sé, por ejemplo:
digamos que tienes este archivo:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Documento sin título</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#buscar").click(function(){// nombre del boton que haces click
if($("#campo_de_busqueda").val() == "" || $("#campo_de_busqueda").val() == null){
alert("Por favor inserte texto en su campo de búsqueda.");
}
});
});
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<input type="text" name="campo_de_busqueda" id="campo_de_busqueda" />
<input type="submit" name="buscar" id="buscar" value="buscar" />
</p>
<p> </p>
<p> </p>
<p>1<a name="usuario_1" id="usuario_1"></a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a name="usuario_2" id="usuario_2"></a>2</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a name="usuario_3" id="usuario_3"></a>3</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</form>
</body>
</html>
Si quieres ir al registro tres, cuando hagas el "retorno" lo haces con: index.html#usuario_3
Espero explicarme, un abrazo.