<!--
function showReplies( h1title, comment, author, date, reply, width, height) {
  var width_b = 40;
  var height_b = 50;
  width_T = width+width_b;
  height_T = height+height_b;
  windowAttributes = "scrollbars=yes,status=no,toolbar=no,location=no,menubar=no,resizable=1, width=" + width_T + ",height=" +  height_T +'"';
  displayWindow = window.open("","", windowAttributes);
  displayWindow.document.write("<html>");
  displayWindow.document.write ("<head><title>" + stripslashes(h1title) + "</title>");
  displayWindow.document.write('<link href="/Stylesheets/AnimalWorld.css" rel="stylesheet" type="text/css" />');
  displayWindow.document.write('<link href="/Stylesheets/Bird.css" rel="stylesheet" type="text/css" /></head>');
  displayWindow.document.write("<body><div align='center'><table border='0' class='comment-table' width='93%'><tr><th colspan='3'>");
  displayWindow.document.write(stripslashes(h1title) + '</th></tr>');
  displayWindow.document.write('<tr><td height="15" bgcolor="#DDDDE0" colspan="3"><span class ="author">' + author + '</span> - <em><font size="1">' + date + '</font></em></td></tr>');
  displayWindow.document.write('<tr><td bgcolor="#DDDDE0"></td><td class="comment-table-center">' + stripslashes(comment));
  displayWindow.document.write(stripslashes(reply) + '</td>');
  displayWindow.document.write("<td bgcolor='#DDDDE0'></td></tr><tr><td height='15' bgcolor='#DDDDE0' colspan='3'></td></tr></table></div></body>");
  displayWindow.document.write("</html>");
  displayWindow.document.close();
  return true;
}

function addslashes(str) {
str=str.replace(/\\/g,'\\\\');
str=str.replace(/\'/g,'\\\'');
str=str.replace(/\"/g,'\\"');
str=str.replace(/\0/g,'\\0');
return str;
}
function stripslashes(str) {
str=str.replace(/\\'/g,'\'');
str=str.replace(/\\"/g,'"');
str=str.replace(/\\0/g,'\0');
str=str.replace(/\\\\/g,'\\');
return str;
}
-->

