אוקיי תאמת כל הקודים האלא רק סיבחו אותי עוד יותר

קיבלתי את השגיאה הזאת:
Fatal error: Call to undefined function: querystring() in /home/thegod/domains/vlad.web.lsrv.co.il/public_html/nizkor/candles.php on line 6
הנה הקובץ:
PHP קוד:
<?php
require 'db.php';
require 'header.php';
echo "<h3><center><a href=\"#\" ONCLICK=\"window.open('canadd.php', 'Sample', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=400,height=260')\">הדלק נר</a></center></h3>";
$nPage = Request.QueryString("$nPage")*1 || 1;
if ($nPage==1) {
$select = mysql_query("SELECT TOP ` + nNumOfRecords + ` ID,Title,Name,Content FROM candles");
}else {
$select = mysql_query("SELECT TOP " + nNumOfRecords + " Title,Name,Content FROM candles WHERE ID NOT IN (SELECT TOP "+(($nPage*nNumOfRecords)-nNumOfRecords)+" ID FROM Title,Name,Content FROM candles)");
}
echo "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr>";
$x=0;
while ($rows = mysql_fetch_assoc($select)) {
extract($rows);
$x++;
echo "<td><img src=\"images/ner.jpg\" width=\"21\" height=\"24\"></td>
<td><b><font size=\"3\">".$Title."</font></b></td><td width=\"5\"></td>";
if($x % 7 == 0) {
echo "</tr><tr>";
}
}
echo "</tr></table>";
require 'footer.php';
?>