﻿    var newWin;
   
    function ConfirmDisclaimer(email) {

	var emaillink = "mailto:" + email;	
        var confirmation = confirm("You are about to send an unsecured email." + '\n' + "Please do not send any confidential information via email." + '\n' + "If you would like to send a secure email please click Cancel and click the Secure Email link at the bottom of the page.");
        if (confirmation) { document.location = emaillink; }                                 
    
    }


