function emailthis(){
 newwindow = window.open('','','top=20,left=20,width=400,height=370,resizable=yes');
 url=location.href;
 if (!newwindow.opener) newwindow.opener = self;
 with (newwindow.document){
  open();
  write('<html><head><title>Send this page to a friend!</title><link rel="STYLESHEET" href="../SiteStyle.css" type="text/css"></head>');
  write('<body text="#000000" bgcolor="#ffffff" topmargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">');
  write('<p align="center">The names and email addresses given to send this message are <b><font color="#FF0000">NOT</font></b> retained by us <u>in any fashion whatsoever</u>. They are only used to send the email in the friendliest manner possible. Only the email address of the recipient is <font color="#FF0000"><b>required</b></font>.</p>');
  write('<div align="center"><center><form method="POST" action="emailthispage.asp" name="emailthispage">');
  write('<table border="0" cellspacing="0" cellpadding="2"><tr><td align="right">Your Name:</td><td><input type="text" name="name" size="30" value=""></td></tr>');
  write('<tr><td align="right">Your Email Address:</td><td><input type="text" name="email" size="30" value=""></td></tr>');
  write('<tr><td align="right">Email To (<font color="#FF0000">required</font>):</td><td><input type="text" name="recipient" size="30"></td></tr>');
  write('<tr><td width="100%" align="center" colspan="2"><p><b>&nbsp;<br>Special Message:</b><br>');
  write('<textarea rows="4" name="message" cols="35" size="39" wrap="soft"></textarea></p>');
  write('</td></tr></table><p><input type="submit" value="Send This Message" name="B1"></p>');
  write('<input type="hidden" name="page" value="' + thispage + '"></form></center></div>');
  write('</body></html>');
  close();
 }
}