﻿<!-----

function mailpage()
{
  mail_str = "mailto:?subject= Visit this website page: " + document.title;
  mail_str += "&body= I am recommending that you visit this web site page.  It maybe of interest to you. " + document.title;
  mail_str += ". Here is the link to the page at, " + location.href; 
  location.href = mail_str;
}

/*Add to web page html body:
<a href="javascript:mailpage();">E-Mail This Page</a>
*/



function popupPage(the_url)
{
 window.open(the_url,'open_window',
 'scrollbars=yes,menubar=no,height=400,width=600,resizable=yes,toolbar=yes,location=no,status=no,top=0');
}



----->


