$(document).ready(function() {
	//Tell a Friend Pop Up
	$("a.popup").click(function(){
		var janela;
		var url = $(this).attr("href");
		var name = "subscribe";
		var width = 460;
		var height = 310;
		var top = (screen.availHeight - height) / 2;
		var left = (screen.availWidth - width) / 2;
		var scroll = 'no';
		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;
	});
	
	$("form.validate").validate();
});

function PopupCenter(pageURL, title, w, h) {
	var left = (screen.width/2)-(w/2);
	var top = (screen.height/2)-(h/2);
	var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
	return false;
} 
