function mailpage() 
{ 
mail_str = "mailto:?subject=Check this link: " + document.title; 
mail_str += "&body= " + document.title; 
mail_str += "... at: " + location.href; 
location.href = mail_str; 
var logURL = escape(location.href);
var logTitle = escape(document.title);
logClick(logURL, logTitle);
} 


 function logClick(logURL, logTitle) {
    window.focus();
	mbug = new Image();  
	mbug.src = 'http://www.army.com/scripts/mailtrack.php?url=' + logURL + '&title=' + logTitle;
}

