jQuery.noConflict();

function addToFavorites()
{
	if (window.sidebar) // Mozilla Firefox Bookmark
	{
		window.sidebar.addPanel(document.title, window.location.href, "");
	}
	else if (window.external) // Internet Explorer
	{
		window.external.AddFavorite(window.location.href, document.title);
	}
	else
	{
		alert("Your browser does not support this function.\n\nPlease press CTRL+D to bookmark this page."); 
	}
}
function sendToFriend()
{
	//window.location = '/Send-To-Friend.aspx?t=' + escape(document.title) + '&u=' + escape(window.location.href);
	var mailto = 'mailto:?subject=' + escape('First Presbyterian Church of Orlando');
	mailto += '&body=' + escape('Dear Friend,') + '%0A%0A' + escape('I thought you would be interested in the following:') + '%0A%0A';
	mailto += escape(document.title) + '%0A';
	mailto += escape(window.location.href) + '%0A';
	mailto += '%0A';
	mailto += escape('For more information, please visit First Presbyterian Church of Orlando at http://www.fpco.org');
	window.location = mailto;

}