// JavaScript Document
function mailpage()
{
  mail_str = "mai";
	//  Split up
  mail_str += "lto";
	//  Mailto command mailto:hormel@xisl.com
  mail_str += ":ext";
	//  into lots of bits mailto:hormel@extian.org
  mail_str += "ian-request2";
	//  into lots of bits mailto:hormel@johncollins.org
  mail_str += "@";
	//  with spamtraps in mailto:hormel@suecollins.net
  mail_str += "extian.org?";
	//  hopefully to make life a bit harder for "harvesters"
  mail_str += "subject= subscribe ";
  mail_str += "&body= subscribe";
  location.href = mail_str;
}
