function EmailToAFriend()
{
 var message = "Hi,\nThought this page on the Version 1 website may be of interest to you: \n"+window.location;
 var subject = "Check this page on the Version 1 website";

 window.open("mailto:?subject="+escape(subject)+"&body="+escape(message),"_self");
}
