$(document).ready(function(){
	//Tell a Friend Pop Up
	$(".pay_button").click(function(){
		var janela;
		var url = $(this).attr("href");
		var name = "pay_bill";
		var width = 540;
		var height = 600;
		var top = (screen.availHeight - height) / 2;
		var left = (screen.availWidth - width) / 2;
		var scroll = 'yes';
		var resize = 'no';
		pop = window.open(url, name, 'width=' + width + ', height=' + height + ', top=' + top + ', left=' + left + ', scrollbars=' + scroll + ', resizable=' +  resize + ', statusbar=no');
		pop.focus();
		return false;
	});
});
