function contact_button() {

// scramble it up a little so difficult to detect
var who1	= "ahsalum";
var who2	= "info";
var who3	= "%23org";
var who		= who2 + "@" + who1 + who3.replace(/%23/g,".");

// subject
var what1	= "AHS Alumni Assoc - ";
var doctitle= document.title;
var what3	= "..."

// use the 1st 25 char of the page title in the subject
var what2	= (doctitle.substring(0,30))
var what	= what1 + what2 + what3;


// The main body
var newline = "%0d%0a";
var hello1	= "Hello Ames High School Alumni Association, " + newline + newline;
var name1	= "My name is: " + newline;
var year1	= "I am a graduate of the AHS class of [year]: " + newline;
var last1	= "My last name when I was at AHS was: " + newline + newline;
var nameall = name1 + year1 + last1;
var add1= "I have a new address and/or email." + newline ;
var oldadd	= "My old mailing address and/or email was: " + newline + newline;
var newadd	= "My new mailing address and/or email is: " + newline + newline;
var addall  = add1 + oldadd + newadd;
var info1	= "Additional infomation or question: " + newline + newline;
var photo1	= "I am attaching photo(s) for the www.ahsalum.org/Pictures.html page: " + newline;
var photo2	= "The Alumni (+ grad years) in the attached photo are: " + newline + newline;   
var photo3	= "The photo caption should read: " + newline + newline + newline;
var frpage  = "I am sending this email from the www.ahsalum.org page titled: ";
var photoall= photo1 + photo2 + photo3;
var body	= hello1 + nameall + addall + info1 + photoall + frpage + doctitle;

parent.location.href ='mailto:'+who+'?subject='+what+'&body='+body+'';
}

//  End of function -->
