// Domain and path of doc
var thisurl = 'http://' + window.location.host + window.location.pathname;


/* Sends the URL of the current page to a pop-up window through a URL string  */
function tellFriend()
{ 
 window.open('emailthispage.php?page='+document.URL + '&title=' + document.title,'email','width=300,height=425,toolbar=no,location=no,scrollbars=no,resizable');
// email.focus();
}
