/* e-mail page to a friend begins */
function emailPage(){

var daReferrer = document.referrer;
var email = " ";
var subject = "Thought you'd find this interesting";
var body_message = "I thought you'd be interested in this webpage from Goodman Private Wealth:%0D%0D"+escape(document.title)+"%0D%0D"+document.location+"%0D%0D";
var mailto_link = 'mailto:'+email+'?subject='+subject+'&body='+body_message;

win = window.open(mailto_link,'emailWindow');
if (win && win.open &&!win.closed) win.close();
}

/* e-mail page to a friend */