// JavaScript Document
function popupMessage() 
{  
// SET MESSAGE VALUES  
var to = "&#115;&#117;&#98;&#109;&#105;&#115;&#115;&#105;&#111;&#110;&#115;&#64;&#119;&#101;&#101;&#107;&#108;&#121;&#100;&#97;&#118;&#101;&#115;&#112;&#101;&#97;&#107;&#46;&#99;&#111;&#109;";  
var cc = " ";  
var bcc = " ";  
var subject = "Information on another DMB Interview";  
var body = "Hello,\n\n" + "DMB Member being interviewed:\n" + "Web Address for Interview:\n" + "Additional Comments:\n"
// BUILD MAIL MESSAGE COMPONENTS
var doc = "mailto:" + to + "?cc=" + cc + "&bcc=" + bcc + "&subject=" + escape(subject) + "&body=" + escape(body);
// POP UP EMAIL MESSAGE WINDOW
window.location = doc;
}
