/* 
Copyright (C)2001 Purposeful Singleness
All Rights Reserved.
*/

function FetchBody() 
{
var now=new Date();
var str = (document.fetchpost.body.value);
window2=window.open("", 'FetchBody','toolbar=no,location=no,scrollbars=yes,directories=no,menubar=no,resizable=1,width=218,height=118');
window2.document.write("<HTML><HEAD><TITLE>Copy of Message</TITLE><BODY>\n");
window2.document.write("<textarea WRAP=ON COLS=70 ROWS=19 name='body'>"+str+"</textarea>\n");
window2.document.write("<p>Copied on "+now+"  </BODY></HTML>");
window2.document.close();
}
if(window.self != window.top) {
  open("singles.shtml", "_top");
  }