<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com


var YourSubject = "Check out the MarkFoster.ORGanon - http://markfoster.org"; 

var theE, theB, newB;

function changeLoc() {
theE = document.MailForm.toemail.value;
newB = "\n" + document.MailForm.thebody.value;
theB = document.MailForm.Message.value;

if (document.RealForm.Message.value.indexOf(newB) == -1) 
  document.RealForm.Message.value =  newB + theB;
else if (document.RealForm.Message.value.indexOf(theB) == -1) 
  document.RealForm.Message.value = theB;


document.RealForm.action = "mailto:"+theE+"?subject="+YourSubject;
}

//-->
