// JavaScript Document

// Write a mailto link adding the document
// title by closing the quote and adding the value 
// document.title and completing the html and javascript write statement


var address="sales"
var server="healthwaresystems"

document.write("<a class=\"emaillink\" href=\"mailto:" + address + "@" + server + ".com?subject=healthwaresystems.com - " + document.title + "&body=%0D%0D%0D------------------------------%0DEmail%20linked%20to%20from%20" + location.href + "%0D------------------------------\" title=\"Contact HealthWare\">e-mail us directly</a>");
