function inform_ProFundCom(email,url,title) { var cookieInfo=""; var pfce=pfc_getCookie('PFCE'); if(pfce) { cookieInfo="&PFCE="+pfce; } var s = document.createElement('script'); s.src="https://thirdave.profundcom.net/dms/w.php?email="+encodeURIComponent(email)+"&page_viewed="+encodeURIComponent(url)+"&page_title="+encodeURIComponent(title)+cookieInfo; document.body.appendChild(s); return true; } function pfc_getCookie(cname) { var name = cname + "="; var ca = document.cookie.split(';'); for(var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; }