// JavaScript Document

function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }


function EmailLink(){
window.location = "mailto:"+"?subject=I thought this article from CRFA.ca might interest you" + "&body="+document.title+"%0A"+window.location;
}

function Feedback(){
window.location = "mailto:info@crfa.ca"+"?subject=Feedback on article: "+window.location;
}
