/*____________________________________________________________*/
/*_____________________________v1.0___________________________*/
/*____________________"Send To Friend Link"___________________*/
/*    If you want to use this code, feel free to, however-    */
/*    I ask that you please credit me for taking the time     */
/*        to learn how this works and then writing it!        */
/*_____________________________by_____________________________*/
/*                        Larry Odette                        */
/*               Onkodjinn@onkodjinn.890m.com                 */
/*____________________________________________________________*/
/*    Use this call code (placed where you want the email     */
/*    link to be) on whatever page you wish to link to -      */
/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/* <script type="text/JavaScript" src="sendpage.js"></script> */
/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
/*    It will generate the link in the email for the page     */
/*   you put it on automatically, and this is all you need!   */
/*____________________________________________________________*/
/*____________________________________________________________*/

var SubjectLine='Take a look at this: '+document.title;

var BodyText='You can view the Barry, Branch, and Calhoun County Michigan Works! Workshop Schedule here: '+window.location;

var Message=' <A CLASS="contact" HREF="mailto:?SUBJECT='+escape(SubjectLine)+'&BODY='+escape(BodyText)+'" OnMouseOver="status=\'Send your friends e-mail about this page\'; return true;" TITLE="">To email this page to a friend, click here.</A>';

var MessageIE=' <A CLASS="contact" HREF="mailto:?SUBJECT='+(SubjectLine)+'&BODY='+(BodyText)+'" OnMouseOver="status=\'Send your friends e-mail about this page\'; return true;" TITLE="">To email this page to a friend, click here.</A>';

if(document.all) { document.write(MessageIE); }

else { document.write(Message); }