﻿
function AddStylesheet(href) {
    var ss = document.createElement("link");
    ss.type = "text/css";
    ss.rel = "stylesheet";
    ss.href = href;
    document.getElementsByTagName("head")[0].appendChild(ss);
}

function mailPage() {
    mail_str = "mailto:?subject=Chamber of Commerce and Industry";
    mail_str += "&body=Hi," + "%0D%0A" +"%0D%0A"; 
    mail_str += "I thought you might be interested in: " + document.title + ".%0D%0A";
    mail_str += "You can view it at, " + location.href;
    location.href = mail_str;
}



