 
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
 

var SubjectLine='Take a look at this web page I found, '+top.document.title; 
var BodyText='You can see this page at: '+top.location.href;

var Message='<A CLASS=effect20 HREF="mailto:?SUBJECT='+escape(SubjectLine)+'&BODY='+escape(BodyText)+'" OnMouseOver="status=\'Send your friends e-mail about this page\'; return true;" TITLE="Send your friends e-mail about this page">E-mail this page<\/A>';

var MessageIE='<A CLASS=effect20 HREF="mailto:?SUBJECT='+(SubjectLine)+'&BODY='+(BodyText)+'" TITLE="Send your friends e-mail about this page">E-mail this page<\/A>';

if( document.all ) { 
	document.write( MessageIE ); 
} else { 
	document.write( Message ); 
}

 