<!--/* function sendMail()   (c) 5.2004 Christian Broennimann   this function opens the configured email editing tool an prefills the receiver address, the subject and body.   the receiver address will be concatenated with the '@' char   given the two input parameters emailname and servername.   this concatenation is very usefull to prevent spammer search engines in extracting   valid email adresses from html documents.   mandatory fields     emailname  - e.g. 'myemailaddress'     servername - e.g. 'mymailserver.com'   non mandatory fields     subject    - e.g. 'this is the mail subject'	 body       - e.g. ' this is the \n multiline body'*/function sendMail(emailname, servername, subject, body){	if (subject == null || subject == "")	  {subject = " ";}	if (body == null)	  {body = "";}	body = body.replace(/\n/g,"%0D%0A");	document.location.href="mailto:" + emailname + "@" + servername + "?Subject=" + subject + "&body=" + body;}//-->
