$(document).ready(function(){
	$("a#twitter_auth").click(function(e){
		href = $(this).attr('href');
		twitterWindow = window.open(href,"_blank", "width=780,height=420,status=1");
		twitterWindow.moveTo(200,100);
		return false;
	});
});
