 $(document).ready(function(){

	$("#rsvp").click(function() { 
		newwindow=window.open(this.href,'name','height=600,width=800');
		if (window.focus) {newwindow.focus()}
		return false;
	
	});
/*
	$("#rsvp").prettyPopin({
		modal: true,
		width: 830,
		height: 635,
		callback : function(){
			alert('This popin has a callback');
		}
	});
*/
});

