Как вариант, можно передать параметр в document.location.hash.
01.html
<a href="02.html#n1">…</a>
<a href="02.html#n2">…</a>
02.html
<html>
<head>
<title>Test</title>
</head>
<body>
<script type="text/javascript">
if (document.location.hash == "n1") {
document.write("n=1");
}
else {
document.write("n=2");
}
</script>
</body>
</html>