

/* These functions will launch an email window and populate subject and body */
function mailpage()
{
mail_str = "mailto:?subject=Check out this Web page: " + document.title;
mail_str += "&body=I thought you might be interested in this content from " + document.title;
mail_str += ". You can view it at " + location.href; 
location.href = mail_str;
}

function comments()
{
mail_str = "mailto:comments@cutter.com?subject=Comment on: " + document.title;
mail_str += "&body=%0D%0A" + document.title + "%0D%0A" + location.href;
location.href = mail_str;
}


/* This function will control the share/send dropdown menu */
var ActiveMenu = null;
var closeMenu;
var MultipartHeadlines = new Array();
var CurrentEntry = null;
var recIsOpen = false;



function ToolbarRecommend(whichRec) {
	if (recIsOpen == false) {
		document.getElementById(whichRec).style.display="block";
		recIsOpen = true;
	} else {
		document.getElementById(whichRec).style.display="none";
		recIsOpen = false;
	}
}
function closeRec(whichRec) {
	document.getElementById(whichRec).style.display="none";
	recIsOpen = false;
}

