/*from Webreference http://www.webreference.com/js/tips/000822.html*/

function mailpage()
{
  mail_str = "mailto:?subject= Check out this page from Marketek Consulting "
  mail_str += "&body=Hi, I found this interesting url: " + location.href;
  location.href = mail_str;

}
