// 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.1


function MailThisPage(PageTitle, PageURL, CopyMailboxs)
{

	location.href = "mailto:?subject=" + PageTitle + "&cc= " + CopyMailboxs + "&body= " + PageURL;
}
