Generating Email Subject Text

admin

Administrator
Staff member
Anybody got any ideas on how to modify the script below to generate an email SUBJECT?

<!-- Begin
function isPPC() {
if (navigator.appVersion.indexOf("PPC") != -1) return true;
else return false;
}
if(isPPC()) {
document.write('<b>Send <A CLASS="contact" HREF=http://www.webdeveloper.com/forum/archive/index.php/\"mailto:\?subject\=Take a look at this web page article I found,' + document.title + '?body=You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page"> a link to this page <\/A> to a friend</b>');
}
else { document.write('<b>Send <A CLASS="contact" HREF=http://www.webdeveloper.com/forum/archive/index.php/\"mailto:\?body\=Take a look at this web page article I found,' + document.title + '. You can see this page at: ' + window.location + '\" onMouseOver="window.status=\'Send your friends e-mail about this page\'; return true" TITLE="Send your friends e-mail about this page"> this page <\/A> to a friend</b>');
}
// End -->
 
Back
Top