$(function (){
	$('a.print').click(function (){
		var popup = window.open($(this).attr('href'), 'tiripiri', 'width=580px,height=500px,scrollbars=1,titlebar=0,resizable=0,menubar=1');
		popup.focus();
		return false;
	});
	
	$('a.send-to-friend').click(function (){
		var popup = window.open($(this).attr('href'), 'tiripiri', 'width=580px,height=450px,scrollbars=1,titlebar=0,resizable=0,menubar=1');
		popup.focus();
		return false;
	});
	
	$('a.ask-author').click(function (){
		var popup = window.open($(this).attr('href'), 'tiripiri', 'width=580px,height=450px,scrollbars=1,titlebar=0,resizable=0,menubar=1');
		popup.focus();
		return false;
	});
});
