function mail(addr,subj){
	window.location.href = "mail" + "to" + ":" + addr + "@" + "thornberrystables" + "." + "com?" + "subject=" + subj 
}

function mailhelp(){
	at = "@"
	theend = "." + "com"
	alert ("When you click on the email link below, your email software "
        + "\n" + "should load with the appropriate email address automatically. "
        + "\n" + "If this does not happen please use the following information to "
        + "\n" + "send email to the appropriate people:\n" 
	+ "\n" + "FOR INFO ON:\t SEND EMAIL TO:\t\t\t CONTACT PERSON"
	+ "\n" + "Boarding horses:\t boarding" + at + "thornberrystables" + theend + "\t Maurice or Cheryl"
	+ "\n" + "Training horses:\t training" + at + "thornberrystables" + theend + "\t Karen"
	+ "\n" + "Riding lessons:\t lessons" + at + "thornberrystables" + theend + "\t Karen"
	+ "\n" + "Carriage rides:\t carriage" + at + "thornberrystables" + theend + "\t Maurice"
	+ "\n" + "General Info:\t info" + at + "thornberrystables" + theend + "\t\t Maurice or Cheryl"
	)
}

function mailex(addr,site,subj){
	window.location.href = "mail" + "to" + ":" + addr + "@" + site + "." + "com?" + "subject=" + subj 
}
function mailexx(addr,site,name,subj){
	window.location.href = "mail" + "to" + ":" + addr + "@" + site + "." + "com <" + name + ">?" + "subject=" + subj 
}

