GIỚI THIỆU TRANG NÀY ĐẾN QUÝ THÂN HỮU
Email của người nhận:

<p align="justify"><!-- Begin E-Mail-This-Page Script //-->
</p>
<form name="eMailer">
<p align="center"><b><font face="Arial" size="3">E-Mail
This Article
To your Friend</font></b>
<font size="2" face="Arial">
<br>
Enter recipient's e-mail:</font>
<br>
<input type="text" name="address" size="18">
<br>
<input type="button" value="Send this URL" onClick="mailThisUrl();">
</form>

<script language="JavaScript1.2">
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 = window.location;
m = "I thought this might interest you...";
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="+document.title+" "+u;
}
}
</script>
<!-- End E-Mail-This-Page Script //-->