// JavaScript Document

function mailpage(){
	mail_str = "mailto:?subject=" + document.getElementById('title').innerHTML;
	mail_str += "&body=I saw this Press Release on Creative Strategy Group's website and thought you might be interested.%0D%0A" + location.href;
	location.href = mail_str;
}