// Name:		MailThisPage()
// Desc:		Open Email Client new message item and fill the subject and body with page properties
// Input:		PageTitle = Content of the HTML title tag.
//			PageURL = Direct URL of the current page.
// Return:		Nothing.
// Ver:			1.0


function MailThisPage(PageTitle, PageURL)
{

	location.href = "mailto:?subject=" + PageTitle + "&body= " + PageURL;
}