$(document).ready(function() {
	$('#tweet_share').click(function(e) {
		e.preventDefault();
	    var width  = 550,
	        height = 450,
	        left   = ($(window).width()  - width)  / 2,
	        top    = ($(window).height() - height) / 2,
	        url    = this.href,
	        opts   = 'status=1' +
	                 ',width='  + width  +
	                 ',height=' + height +
	                 ',top='    + top    +
	                 ',left='   + left,
	    	twitter_popup = window.open(url, 'twitter', opts),
	    	watchClose = setInterval(function() {
			    if (twitter_popup.closed) {
				    clearTimeout(watchClose);
					window.location.href = ($('#redirect_uri').text());
			    }
			}, 200);
	    return false;
	});
});
