function mail_to_friend()
{
   var myTitle = document.title;
   var myURL = document.location.href;
   var myTag = '<a href=\"mailto:\?subject=' + myTitle + '\&body=' + myURL + '\">'
   document.write(myTag);
}
function printable_version()  // article.htm -> article_prt.htm, etc.
{
   var myURL = document.location.href;
   
   var myTag = '<a href=\"http://www.larouchepub.com/cgi-bin/reir/gen_prt2.cgi?file=' + myURL + '\">'
   document.write(myTag);
}
function printable_version2()  // article.htm -> article_prt.htm, etc.
{
   var myURL = document.location.href;
   
   var myTag = '<a href=\"http://www.larouchepub.com/cgi-bin/reir/gen_prt3.cgi?file=' + myURL + '\">'
   document.write(myTag);
}
