﻿// Initialize FB API
window.fbAsyncInit = function() {
	FB.init( {appId: '195900720472465', status: true, cookie: true, xfbml: true} );
};

// FB Share UI
function shareFacebook(oElem) {
	window.open(oElem.href,'sharefb','toolbar=0,status=0,width=480,height=420');
	return false;
}

// Tweet UI
function shareTweet(oElem) {
	var sUrl = oElem.href + "?text=" + encodeURIComponent( document.title ) + "&via=BonoChrisP&related=CNGnow,Chesapeake";
	window.open(sUrl, 'sharetw', 'toolbar=0,status=0,width=550,height=450');
	return false;
}

