I'm using this javascript to allow site visitors to easily forward the pages URL to a friend via their email.
<script language="javascript">function NavTo(url){ window.location = url }</script>
<INPUT class="fontKristen14-red" onclick="NavTo('mailto:&subject=Check out this web site I found...&body=If clicking on this link does not automatically open the web page, copy and paste it into your browser\'s ADDRESS window'+ ' ' + location.href)" type="button" value="send this page to a friend">
What I have not been able to find is the line break code to place between the Body message: "If clicking on this link does not automatically open the web page, copy and paste it into your browser\'s ADDRESS window" and the page URL: "location.href".
My email application is MS Outlook and the email being sent appears to be created in RTF format.
Any clues where to look for a solution or does anyone have a solution?
Thanks in advance!
llp