

            //Script by Tr&aring;nn: http://come.to/tronds
            //Submitted to JavaScript Kit (http://javascriptkit.com)
            //Visit http://javascriptkit.com for this script

            var initialsubj="Star Trek: Of Gods and Men, a film celebrating 40 years of Star Trek!"
            var initialmsg="Hey! Check out http://www.startrekofgodsandmen.com/ for information on the three-part online film starring original series stars Walter Koenig and Nichelle Nichols, plus Alan Ruck of Star Trek: Generations, and a whole bunch of other Star Trek actors, from all 5 Trek series! The film is directed by Tim Russ, a.k.a. Tuvok of Star Trek: Voyager! Check out the new site and view special features, behind the scenes info, and chat in the new online forums!"
            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;
               }
            }
            u = window.location;
            function mailThisUrl() {
            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
               }
            }
         
