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('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
  write('<html xmlns="http://www.w3.org/1999/xhtml" lang="EN"><head><title>Send this page to a friend!</title><meta name="robots" content="noindex" /><link rel="STYLESHEET" href="../itlm.css" type="text/css"/><style type="text/css">body{background-color: #ffffff;}</style></head>');
  write('<body text="#000000" bgcolor="#ffffff">');
  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">');
  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"></textarea></p>');
  write('</td></tr></table><p><input type="submit" value="Send This Message" name="B1"/></p>');
  write('</form></center></div>');
  write('</body></html>');
  close();
 }
}