<!--// AUTO EMAIL LINK

if (navigator.appName != "Netscape") { var good

function checkEmail(field) { // 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 } }

dkt = document.title

if (document.title == "INTERNET-TOLKEN") { m = "Länktips: "+dkt
u = "http://itolk.com" //window.location; 
tips = "TIPSA EN VÄN OM " +dkt; fyll = "Mottagarens email-adress:"; ok = "Sänd" }

else { m = "Online Translation: "+dkt
u = "http://itolk.com/translation.html" 
tips = "TELL YOUR FRIENDS ABOUT THE " +dkt; fyll = "Recipient's email address:"; ok = "Send" }

function mailThis() { good = false; checkEmail(document.all.mailer)
if (good) { // expression must be all on one line:
window.location = "mailto:"+document.all.mailer.value+"?subject="+m+"&body="+dkt+" "+u }}

document.write("<font color='white'>"+tips+"</font><br>")
document.write("<font color='silver'>"+fyll+"</font><br>")
document.write("<input type='text' id='mailer' size='16'")
document.write("STYLE='font: 7pt small fonts,arial; color:#35aeff; background:navy; width:90pt'><br>")
document.write("<input type='button' value="+ok+" onClick='mailThis();'")
document.write("STYLE='font: bold 8pt'>")
}

//-->
