// POP UP A PREFORMATTED EMAIL MESSAGE WINDOW
function emailSJA(picture) {
  // SET MESSAGE VALUES
 var to = "marco.angelini@artstjames.com";
  var subject = picture;
  
  // BUILD MAIL MESSAGE COMPONENTS 
  var doc = "mailto:" + to + 
      "&subject=" + escape(subject);
     
  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
}


