function contact_button() {

// scramble it up so difficult to detect
var who1	= "ahsalum";
var who2	= "info";
var who3	= "%23org";
var who		= who2 + "@" + who1 + who3.replace(/%23/g,".");

// 125 char of page title in the subject
var doctitle= document.title;
var subject125	= (doctitle.substring(0,125))
var what	= "To AHSAA, " + subject125 + "...";

// body
var newline	= "%0d%0a";
var newlines2	= newline + newline;
var maydelete	= " [if not, you may delete this section]" + newlines2;
var hello1	= "[Please edit or change the subject above as needed]" + newlines2 + 
"Hello Ames High School Alumni Association AHSAA, " + newlines2;
var FULLname	= "From:" + newline + "My full name including middle name is: " + newline;
var HSlast	= "My last name when I attended AHS was: " + newlines2;
var AHSyear	= "I graduated from the AHS class of [year]: ";
var nameall 	= FULLname + HSlast + AHSyear;
var line 	= newlines2 + "==================" + newline;
var yesnewadd	= "Yes, I have a new postal mailing address " + maydelete;
var oldadd	= "My old mailing address was: " + newlines2;
var newadd	= "My new mailing address is: ";
var addaddress  = line + yesnewadd + oldadd + newadd;
var yesnewemail	= "Yes, I have a new email" + maydelete;
var oldemail	= "My old email was: " + newlines2;
var newemail	= "My new email is: ";
var addemail  	= line + yesnewemail + oldemail + newemail;
var deceased	= line + "I regret to inform AHSAA of the passing of AHS classmate, teacher, or relative: " + maydelete +
"Full name including middle name: " + newline + "From the AHS class of [year]: " + newline + 
"who passed away on [date and year]: " + newline + "In the location of [city and state]: ";
var info	= line + "Yes, I have more information, a question, a comment, or a letter to AHSAA" + maydelete +
"I have additional information: " + newlines2 + "I have a question: " + newlines2 + "I have a comment: " + newlines2 + 
"I have a small dilemma: " + newlines2 + 
"I have a letter I would like you to print in the newsletter, if room, and/or on the www.ameshigh.org website: ";
var photo1	= "Yes, I am attaching photo(s) for the AHS Alumni newsletter or website" + maydelete;
var photo2	= "The AHS Alumni, names and graduation years, in the attached photo are: " + newlines2;   
var photo3	= "The photo was taken [location] on [when] and the caption should read: ";
var frpage  	= "I am sending this email from the www.ameshigh.org page titled: ";
var photoall= line + photo1 + photo2 + photo3 + line;
var body	= hello1 + nameall + addaddress + addemail + deceased + info + photoall + frpage + doctitle;

parent.location.href ='mailto:'+who+'?subject='+what+'&body='+body+'';
}

//  End -->

