﻿function SendFlyerEmail() {
    var properties = document.getElementsByName("propertyflyer");
    var msg;
    var CrLf = "%0D%0A";
    msg = CrLf + CrLf + "==================================================" + CrLf;
    for(i = 0; i < properties.length; i++) {
        if (properties[i].checked) {
         msg = msg + "http://www.tokre.com/webphotos/webflyers/" + properties[i].value + CrLf;
        }
    }
    
    location.href="mailto:?body=" + msg;
}
