﻿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;
}