// JavaScript Document
// from http://www.sitetoolcenter.com/website-tools-and-tutorials
<!-- Begin 

var initialsubj="Would this web site interest you?";
var initialmsg="As I read about Stom Painters, Inc, I thought you might find it interesting. Here is a link: "+window.location;
var good;

function checkEmailAddress(field) {
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\.sex)|(\.biz)|(\.aero)|(\.coop)|(\.museum)|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi);
if (goodEmail) {
good = true;
}
else {
alert('Please enter a valid address.');
field.focus();
field.select();
good = false;
}
}

function mailThisUrl() {
u = window.location;
good = false
checkEmailAddress(document.eMailer.email);
if (good) {

//window.location = 
"mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+document.title+" "+u;
window.location = "mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+initialmsg;
}
}
// End -->

