<!-- Begin auto email recommend
var good;
function checkEmailAddress(field) {
// the following expression must be all on one line...
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
if (goodEmail) {
good = true;
}
else {
alert('Please enter a valid e-mail address.');
field.focus();
field.select();
good = false;
   }
}
u = "http://www.exegy.com";
m = "I thought ArtSceneAK might interest you...";
function mailThisUrl() {
good = false
checkEmailAddress(document.eMailer.address);
if (good) {
var recipient = document.eMailer.address.value+"; ArtSceneAK@exegy.com"
// the following expression must be all on one line...
window.location = "mailto:"+recipient+"?subject="+m+"&body=ArtSceneAK: Emphasis on Visual Art in Alaska "+u;
   }
}
//  End -->

