function popup(strUrl, iWidth, iHeight, iLeft, iTop, blnCenter, strName, strScroll, strMenus, strTools, strResize, strLocate)
{
	if ( blnCenter )
	{
		iLeft = (screen.width - iWidth) / 2;
		iTop = (screen.height - iHeight) / 2;
	}
	
	var winprops = 	"location=" + strLocate + ",scrollbars=" + strScroll + ",menubar=" + strMenus + ",toolbar=" + strTools + ",resizable=" + strResize + ",left=" + iLeft + ",top=" + iTop + ",width=" + iWidth + ",height=" + iHeight;		

	var popup = window.open(strUrl,strName,winprops);
	popup.focus();
}

function sendMailTo(name, company, domain) {
    locationstring = "mai" + "lto:" + name + "@" + company + "." + domain;
    window.location.replace(locationstring);
}

function mailpage(url) {
	mail_str = "mailto:?subject=" + document.title;
	mail_str += "&body=This message has been sent to you from the Grateful Prayer Chain at Gratefullyliving.com! We are in the process of building the World's Largest Online Prayer Chain. To view the item sent to you, please click the link below: %0A%0A " + document.title;
	mail_str += "%0A%0A" + url;
	location.href = mail_str;
} 
