<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// THESE ARE E-MAIL OPTIONS YOU CAN TURN ON AND OFF


var email_1 		= "yes"     // SHOW 1ST E-MAIL
var email_2 		= "yes"     // SHOW 2ND E-MAIL
var email_3 		= "yes"     // SHOW 3RD E-MAIL




// E-MAIL LINK 1

   if (email_1 == "yes") {

document.write('E-mail:<br>');

document.write(' <A HREF="mailto:mahc@ctcweb.net" class="link">mahc@ctcweb.net</a><br><br><br>');

}





// E-MAIL LINK 2

   if (email_2 == "yes") {

document.write('Mailing Address:<br>');

document.write(' P.O. Box 1391<br>');
document.write(' McCall, ID 83638<br><br><br>');
}





// E-MAIL LINK 3

   if (email_3 == "yes") {

document.write('Phone:<br>');

document.write(' 634-7136<br><br><br>');

}










//  End -->