﻿
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 DoWaterMarkOnFocus(txt, text) {
    if (txt.value == text) {
        txt.value = "";
    }
}

function DoWaterMarkOnBlur(txt, text) {
    if (txt.value == "") {
        txt.value = text;
    }
}

function mailPage() {
    mail_str = "mailto:?subject=Check out " + document.title;
    mail_str += "&body=I thought you might be interested in: " + document.title + ".%0D%0A";
    mail_str += "You can view it at, " + location.href;
    location.href = mail_str;
}
