function mail(end, middle, begin, subject) {
    var puck = middle + "." + end;
    puck = "mailto:" + begin + "@" + puck;
    if (subject) { puck += "?subject=" + subject; }
    document.location.href = puck;
}


function disclaimer(email_address) {
    document.clear;
    document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
    document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\" >");
    document.write("<head> ");
    document.write("        <title>Lee Davis Medical Associates Disclaimer</title> ");
    document.write("        <meta name=\"GENERATOR\" content=\"Microsoft Visual Studio .NET 7.1\"> ");
    document.write("        <meta name=\"ProgId\" content=\"VisualStudio.HTML\"> ");
    document.write("        <meta name=\"Originator\" content=\"Microsoft Visual Studio .NET 7.1\"> ");
    document.write("        <script language=\"JavaScript\" src=\"scripts/mail.js\" type=\"text/javascript\"></script> ");
    document.write("        <style type=\"text/css\"> ");
    document.write("        .content ");
    document.write("        {font-family: Verdana; ");
    document.write("        font-style: normal; ");
    document.write("        font-size: 10pt} ");
    document.write("        td ");
    document.write("        {font-family: Verdana; ");
    document.write("        font-style: normal; ");
    document.write("        font-size: 10pt}  ");
    document.write("        </style> ");
    document.write("    </head> ");
    document.write("    <body> ");
    document.write("        <center> ");
    document.write("            <table id=\"Table1\" width=\"500\" border=\"0\"> ");
    document.write("                <tr> ");
    document.write("                    <td colSpan=\"2\"><font size=\"5\"> ");
    document.write("                            <center></center> ");
    document.write("                        </font> ");
    document.write("                        <p>Please do not use e-mail for urgent or confidential matters. If you need an  ");
    document.write("                            immediate response, please call us directly or call 911. ");
    document.write("                            <br> ");
    document.write("                            <br> ");
    document.write("                            If you are a patient, please include your name and the reason for the message  ");
    document.write("                            in the subject field. Make sure to provide your complete name, the name of your  ");
    document.write("                            physician, and a telephone number where you can be reached. ");
    document.write("                            <br> ");
    document.write("                            <br> ");
    document.write("                        Be aware that e-mail messages may be viewed by multiple people in our practice. ");
    document.write("                        <p></p> ");
    document.write("                    </td> ");
    document.write("                </tr> ");
    document.write("                <tr> ");
    document.write("                    <td align=\"center\" width=\"50%\"><a href=\"/\">Return To Our Homepage</a> ");
    document.write("                    </td> ");
    document.write("                    <td align=\"center\" width=\"50%\"><a href=\"javascript: mail('com','ldmcpc','" + email_address + "');\">Send  ");
    document.write("                            Email</a> ");
    document.write("                    </td> ");
    document.write("                </tr> ");
    document.write("            </table> ");
    document.write("        </center> ");
    document.write("    </body> ");
    document.write("</html>");

}
