function openPopUp(title, url){
	$( '#popup' ).dialog({
		show: 'fade', 
		hide: 'fade', 
		modal: true, 
		resizable: false, 
		title: title, 
		height: $(window).height() * .75, 
		width: 900,
		open: function() {
			$("#popup").load(url);
		}
	});
}
