// JavaScript Document
//prompt("Enter your colleague's email address:", '');
function mail2()
{
var ToLine='Enter E-mail';
var SubjectLine='Forensic Site for Science Teachers'; 
var BodyText='Please take a look at this page from Forensic-Classroom.com: '+top.location;
var email = window.location = 'mailto:' +
	  '?subject=' + encodeURIComponent(SubjectLine) +
      '&body=' + encodeURIComponent(BodyText);
}