
function SetMyHomePage(me)
{
   var myURL = "http://www.cnyes.com/SMS/";
   me.style.behavior='url(#default#homepage)';
   me.setHomePage(myURL);
}


var good;
function checkEmailAddress(field)
{
   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 = window.location;
m = "我想你對鉅亨簡訊館這個網站會有興趣...";

function mailThisUrl()
{
   good = false
   checkEmailAddress(document.eMailer.address);
   if (good)
   {
      window.open("commend.asp?mail="+document.eMailer.address.value+"&subject="+m+"&body="+document.title+" "+u,"","width=1,height=1");
   }
   return false;
}
function mailThisUrl2()
{
   good = false
   checkEmailAddress(document.eMailer.address);
   if (good)
   {
      window.open("commend.asp?mail="+document.eMailer.address.value+"&subject="+m+"&body="+document.title+" "+u,"","width=1,height=1");
   }
   return;
}
