 jQuery(document).ready(function(){
	jQuery("#legalDialog").dialog({open:function() {
							   jQuery(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove();}, 
							   buttons: { "Yes": function() { 
							  				//window.location="/main.cfm" + $.query.set("agreed", 1);
											window.location="/main.cfm?agreed=1&" + window.location.search.substring(1);
							              },
										  "No": function() { 
										  		if (history.length>1)
													history.back(); 
												else
													window.location="http://www.google.com/webhp?hl=en#hl=en&source=hp&q=NEA+Fund&btnG=Google+Search&fp=1&cad=b";
											}  
										},
							   closeOnEscape:false,
							   draggable: false,
							   modal:true, 
							   title:"Members Only", 
							   width: 600
							  });
});

