// JavaScript Document
//Mail function javascript used by the page tools component
function mailPage()
{
  mail_str = "mailto:?subject= Victoria University page: " + document.title;
  mail_str += "&body=I thought this " + document.title + " page would be of interest to you.  ";
  mail_str += "You can view it by following this link: " + location.href; 
  location.href = mail_str;
}