// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header

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 correct e-mail address.')
   field.focus()
   field.select()
   good = false
   }
}

u = "http://www.koreakonsult.com/index_eng.html";
m = "I think this page might be interesting for you...";
p = "A trip to North Korea? You couldn't probably ever imagine going as tourist to a country that is seldom mentioned in connection with tourism....  However, it is possible to say without exaggeration that North Korea (the Democratic People's Republic of Korea or DPRK) is the most exotic and out-of-the-way tourist destinations on the market. More information: ";
function mailThisUrl(){
   good = false
   checkEmailAddress(document.eMailer.address)
   if (good){
      // the following expression must be all on one line...
      window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+p+" "+u;
   }
}
